prime/include/Kyoto/Math/CVector2i.hpp

12 lines
122 B
C++
Raw Normal View History

#ifndef _CVECTOR2I_HPP
#define _CVECTOR2I_HPP
#include "types.h"
class CVector2i {
private:
int x;
int y;
};
#endif