- [NEW] Pantalla de game over

- [NEW] Stats
This commit is contained in:
2024-07-24 23:05:24 +02:00
parent 3a51938d80
commit 0a1b4f8715
8 changed files with 165 additions and 15 deletions

View File

@@ -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();
}
}