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

14 lines
184 B
C++

#ifndef INTVECTOR2_H
#define INTVECTOR2_H
class IntVector2 {
public:
int x;
int y;
IntVector2(int x, int y);
};
#endif // INTVECTOR2_H