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