DungeonCrawl
Loading...
Searching...
No Matches
stats_output.h
Go to the documentation of this file.
1
5#ifndef STATS_OUTPUT_H
6#define STATS_OUTPUT_H
7
9
17int init_stats_mode(void);
18
27void render_stats_window(const character_t* player);
28
40void draw_stats_menu(const char* title, const char** options, int option_count, int selected_index, const char* footer);
41
49void draw_stats_log(const char* message);
50
56void update_stats_local(void);
57
63void shutdown_stats_mode(void);
64
65#endif// STATS_OUTPUT_H
Exposes functions for working working with the character.
void update_stats_local(void)
Update localized strings for the stats mode.
void draw_stats_log(const char *message)
Display a message in the stats log.
void shutdown_stats_mode(void)
Shutdown the stats mode.
void draw_stats_menu(const char *title, const char **options, int option_count, int selected_index, const char *footer)
Draw the stats menu.
int init_stats_mode(void)
Initialize the stats mode.
void render_stats_window(const character_t *player)
Render the stats window.