12345678910111213141516171819202122 |
- /* This file is part of Invaders.
- *
- * Copyright (C) 2020 LCM.
- * You may use, distribute and modify Invaders under the terms of the
- * GPLv3 license, available at <https://www.gnu.org/licenses/\>.
- */
- #ifndef _gameobject_
- #define _gameobject_
- class game_object{
-
- public:
- game_object() {}
- game_object(int X, int Y, int ID);
-
- int x,y,id;
- };
- #endif
|