Lamthai/game/logic/player.h

15 lines
481 B
C
Raw Permalink Normal View History

2025-07-12 12:33:24 +02:00
void init_default_mage(Player& player_arg);
void init_speed(Player& player_arg);
void init_stats(Player& player_arg);
2025-07-16 18:31:15 +02:00
void inc_health(Player& player_arg, float value_arg);
void inc_shield(Player& player_arg, float value_arg);
void inc_speed(Player& player_arg, float value_arg);
void inc_mana(Player& player_arg, float value_arg);
void inc_energy(Player& player_arg, float value_arg);
2025-07-12 12:33:24 +02:00
void level_up(Player& player_arg, int xp_arg);
void print_player(const Player& player_arg);