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