#ifndef __POSITION_H__ # define __POSITION_H__ struct Position { int x; int y; Position(); Position(int x, int y); }; #endif // __POSITION_H__