Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

18 lignes
318 B

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