#ifndef _gameobject_ #define _gameobject_ class game_object{ public: game_object() {} game_object(int X, int Y, int ID); int x,y,id; }; #endif