#ifndef HACKTHEGAME_CHARACTER_INFO_HPP #define HACKTHEGAME_CHARACTER_INFO_HPP #include "src/class/character.hpp" #include "src/class/monster.hpp" #include "src/class/player.hpp" class Info { private: Info(){}; public: static void ofCharacter(Character *); static void ofPlayer(Player *); static void ofMonster(Monster *); static void ofApplication(); }; #endif