OSDN Git Service

Merge branch 'develop' into macos-develop
[hengbandforosx/hengbandosx.git] / src / monster-race / race-sex-const.h
1 #pragma once
2
3 class MonsterRaceInfo;
4
5 enum class MonsterSex {
6     NONE = 0,
7     MALE = 1,
8     FEMALE = 2,
9 };
10
11 bool is_male(const MonsterSex sex);
12 bool is_male(const MonsterRaceInfo &monrace);
13 bool is_female(const MonsterSex sex);
14 bool is_female(const MonsterRaceInfo &monrace);