14 lines
184 B
C
14 lines
184 B
C
|
#ifndef INTVECTOR2_H
|
||
|
#define INTVECTOR2_H
|
||
|
|
||
|
|
||
|
class IntVector2 {
|
||
|
public:
|
||
|
int x;
|
||
|
int y;
|
||
|
IntVector2(int x, int y);
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif // INTVECTOR2_H
|