Still working on the BIG FUCKING CONVERSION...

This commit is contained in:
2021-05-10 18:53:31 +02:00
parent 717c5715e9
commit 2ad5241005
21 changed files with 134 additions and 143 deletions

View File

@@ -12,8 +12,8 @@
class GameController
{
public:
GameController(DrawManager *p_drawManager, InputManager *p_inputManager, MusicManager *p_musicManager);
~GameController(void);
GameController(DrawManager *p_drawManager, InputManager *p_inputManager);
~GameController();
bool Init();
void Go(GameInfo *pGameInfo);
@@ -22,7 +22,6 @@ public:
private:
DrawManager *drawManager;
InputManager *inputManager;
MusicManager *musicManager;
AiguaProcesor *aiguaProcesor;
MarcadorProcesor *marcadorProcesor;
@@ -51,8 +50,8 @@ private:
void PintarEscena();
void PintarCursor();
bool Pausa();
bool Menu(bool bypass = false);
void CarregarMapa(int numMapa);
char *formatejar(int numero);
bool Menu(const bool bypass = false);
void CarregarMapa(const int numMapa);
const char *formatejar(const int numero);
};