clang-format
This commit is contained in:
@@ -1,35 +1,31 @@
|
||||
#pragma once
|
||||
|
||||
#include "game/bola.hpp"
|
||||
#include "game/info.hpp"
|
||||
#include "game/mapa.hpp"
|
||||
#include "game/prota.hpp"
|
||||
#include "game/marcador.hpp"
|
||||
#include "game/momia.hpp"
|
||||
#include "game/bola.hpp"
|
||||
#include "game/prota.hpp"
|
||||
|
||||
class ModuleGame {
|
||||
public:
|
||||
ModuleGame();
|
||||
~ModuleGame(void);
|
||||
|
||||
public:
|
||||
int Go();
|
||||
|
||||
ModuleGame();
|
||||
~ModuleGame(void);
|
||||
private:
|
||||
void Draw();
|
||||
void Update();
|
||||
|
||||
int Go();
|
||||
void iniciarMomies();
|
||||
|
||||
private:
|
||||
|
||||
void Draw();
|
||||
void Update();
|
||||
|
||||
void iniciarMomies();
|
||||
|
||||
Uint8 final;
|
||||
JD8_Surface gfx;
|
||||
|
||||
Mapa* mapa;
|
||||
Prota* sam;
|
||||
Marcador* marcador;
|
||||
Momia* momies;
|
||||
Bola* bola;
|
||||
Uint8 final;
|
||||
JD8_Surface gfx;
|
||||
|
||||
Mapa* mapa;
|
||||
Prota* sam;
|
||||
Marcador* marcador;
|
||||
Momia* momies;
|
||||
Bola* bola;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user