Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 

15 righe
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