DungeonCrawl
Loading...
Searching...
No Matches
stats_mode.h
Go to the documentation of this file.
1
5#ifndef STATS_MODE_H
6#define STATS_MODE_H
8#include "stats.h"
9
10typedef enum {
11 STATS_WINDOW,
12 STATS_EXIT
13} stats_result_t;
14
21stats_result_t stats_mode(character_t* player);
22
23
24#endif//STATS_MODE_H
Exposes functions for working working with the character.
Exposes functions for working with stats.
stats_result_t stats_mode(character_t *player)
Enter the stat mode for a given character.
Definition stats_mode.c:14