OSDN Git Service

[Refactor] struct player_type を class PlayerType に置換。
[hengbandforosx/hengbandosx.git] / src / birth / birth-util.h
1 #pragma once
2
3 #include "system/angband.h"
4
5 enum birth_kind
6 {
7         BK_REALM,
8         BK_RACE,
9         BK_CLASS,
10         BK_PERSONALITY,
11         BK_AUTO_ROLLER,
12 };
13
14 class PlayerType;
15 void birth_quit(void);
16 void show_help(PlayerType* player_ptr, concptr helpfile);
17 void birth_help_option(PlayerType *player_ptr, char c, birth_kind bk);