Primer commit

This commit is contained in:
Raimon Zamora
2014-12-30 22:46:46 +01:00
commit 4a359c46f5
33 changed files with 2778 additions and 0 deletions

36
modulegame.h Executable file
View File

@@ -0,0 +1,36 @@
#pragma once
#include "info.h"
#include "mapa.h"
#include "prota.h"
#include "marcador.h"
#include "momia.h"
#include "bola.h"
class ModuleGame {
public:
ModuleGame( Info* info );
~ModuleGame(void);
int Go();
private:
void Draw();
void Update();
void iniciarMomies();
Uint8 final;
Info* info;
JD8_Surface gfx;
Mapa* mapa;
Prota* sam;
Marcador* marcador;
Momia* momies;
Bola* bola;
};