- [NEW] Pantalla de game over
- [NEW] Stats
This commit is contained in:
@@ -178,11 +178,13 @@ namespace actor
|
||||
|
||||
namespace hero
|
||||
{
|
||||
|
||||
void init(const bool complete=true);
|
||||
int getLives();
|
||||
void setLives(int value);
|
||||
|
||||
void die();
|
||||
bool isDead();
|
||||
|
||||
bool giveBooster(char *booster);
|
||||
void collectBooster(int booster, int id);
|
||||
bool wasBoosterCollected(int id);
|
||||
@@ -208,4 +210,17 @@ namespace actor
|
||||
void move(int *x, int *y, int *z);
|
||||
void setFirstPos();
|
||||
}
|
||||
|
||||
namespace stats
|
||||
{
|
||||
void reset();
|
||||
|
||||
void collectPart();
|
||||
void visitRoom(int room);
|
||||
void loseLive();
|
||||
|
||||
int getNumPartsCollected();
|
||||
int getRoomsVisited();
|
||||
int getLivesLost();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user