Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

15 строки
276 B

#ifndef HACKTHEGAME_CHARACTER_CREATION_HPP
#define HACKTHEGAME_CHARACTER_CREATION_HPP
#include "src/class/player.hpp"
#include "src/class/monster.hpp"
class Creation
{
public:
static Player *ofPlayer();
static Monster *ofMonster();
static Monster *ofBoss();
};
#endif