prime/include/Kyoto/Math/CVector2i.hpp

16 lines
155 B
C++
Raw Normal View History

#ifndef _CVECTOR2I_HPP
#define _CVECTOR2I_HPP
#include "types.h"
class CVector2i {
public:
CVector2i(int, int);
private:
int x;
int y;
};
2022-09-18 06:05:46 +00:00
#endif