- [NEW] Consola in-game

This commit is contained in:
2024-07-03 11:38:39 +02:00
parent 06d58b090d
commit c7186119c2
7 changed files with 371 additions and 99 deletions

View File

@@ -167,6 +167,7 @@ namespace actor
namespace hero
{
void init();
bool giveBooster(char *booster);
void collectBooster(int booster, int id);
bool wasBoosterCollected(int id);
int getBoostGod();
@@ -176,12 +177,16 @@ namespace actor
void useBoostRun();
void useBoostJump();
void giveSkill(char *skill);
bool giveSkill(char *skill);
bool dropSkill(char *skill);
bool wasSkillCollected(char *skill);
int getSkills();
void pickPart(char *part);
bool pickPart(char *part);
bool dropPart(char *part);
bool wasPartCollected(char *part);
int getParts();
void move(int *x, int *y, int *z);
}
}