game_object.hpp 359 B

12345678910111213141516171819202122
  1. /* This file is part of Invaders.
  2. *
  3. * Copyright (C) 2020 LCM.
  4. * You may use, distribute and modify Invaders under the terms of the
  5. * GPLv3 license, available at <https://www.gnu.org/licenses/\>.
  6. */
  7. #ifndef _gameobject_
  8. #define _gameobject_
  9. class game_object{
  10. public:
  11. game_object() {}
  12. game_object(int X, int Y, int ID);
  13. int x,y,id;
  14. };
  15. #endif