OSDN Git Service

[Refactor] #1172 Changed ', TRUE,' and ', FALSE,' to small characters
[hengbandforosx/hengbandosx.git] / src / player / player-sex.h
1 #pragma once
2
3 #include "system/angband.h"
4
5 enum player_sex {
6     SEX_FEMALE = 0,
7     SEX_MALE = 1,
8     MAX_SEXES = 2, /*!< 性別の定義最大数 / Maximum number of player "sex" types (see "table.c", etc) */
9 };
10
11 typedef struct player_sex_type {
12     concptr title; /* Type of sex */
13     concptr winner; /* Name of winner */
14 #ifdef JP
15     concptr E_title; /* 英語性別 */
16     concptr E_winner; /* 英語性別 */
17 #endif
18 } player_sex_type;
19
20 extern const player_sex_type sex_info[MAX_SEXES];
21 extern const player_sex_type *sp_ptr;