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