12#define XP_MULTIPLIER 1.5
Exposes functions for working working with the character.
void level_up(character_t *player)
Handles the level-up process for a character.
int calculate_xp_for_next_level(int level)
Calculates the XP required for the next level.
void add_xp(character_t *player, int xp_earned)
Adds XP to a character and handles level-up if the XP threshold is reached.