Cube-World-Commands-Mod/cwmods/common/IntVector2.h

14 lines
184 B
C
Raw Normal View History

2019-10-06 04:08:12 +08:00
#ifndef INTVECTOR2_H
#define INTVECTOR2_H
class IntVector2 {
public:
int x;
int y;
IntVector2(int x, int y);
};
#endif // INTVECTOR2_H