CubeWorldMods/cwmods/common/IntVector2.h

14 lines
171 B
C
Raw Normal View History

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