Open Source Tomb Raider Engine
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

Game.h 393B

123456789101112131415161718192021222324252627282930313233
  1. /*!
  2. * \file include/Game.h
  3. * \brief Game abstraction
  4. *
  5. * \author xythobuz
  6. */
  7. #ifndef _GAME_H_
  8. #define _GAME_H_
  9. #include "global.h"
  10. /*!
  11. * \brief Game abstraction
  12. */
  13. class Game {
  14. public:
  15. Game(const char *level);
  16. ~Game();
  17. void handleAction(ActionEvents action, bool isFinished);
  18. void handleMouseMotion(int xrel, int yrel);
  19. void display();
  20. private:
  21. };
  22. #endif