1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#ifndef __POSITION_H__ # define __POSITION_H__ struct Position { int x; int y; Position(); Position(int x, int y); }; #endif // __POSITION_H__