You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

19 lines
318 B

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