No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

20 líneas
389 B

  1. #ifndef HACKTHEGAME_CHARACTER_INFO_HPP
  2. #define HACKTHEGAME_CHARACTER_INFO_HPP
  3. #include "src/class/character.hpp"
  4. #include "src/class/monster.hpp"
  5. #include "src/class/player.hpp"
  6. class Info
  7. {
  8. private:
  9. Info(){};
  10. public:
  11. static void ofCharacter(Character *);
  12. static void ofPlayer(Player *);
  13. static void ofMonster(Monster *);
  14. static void ofApplication();
  15. };
  16. #endif