summaryrefslogtreecommitdiff
path: root/src/ecommon/enum/gender.h
blob: 039ca04670d409f485b07389fa0301a987932118 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright (c) Copyright (c) Hercules Dev Team, licensed under GNU GPL.
// Copyright (c) 2014 - 2020 Evol developers

#ifndef EVOL_ENUM_GENDER
#define EVOL_ENUM_GENDER

#include "common/mmo.h"

/**
 *  identical to SEX_ but also includes nonbinary
 */
typedef enum Gender
{
    GENDER_FEMALE = SEX_FEMALE,
    GENDER_MALE = SEX_MALE,
    __UNUSED_GENDER_SERVER = SEX_SERVER,
    GENDER_NONBINARY,
} Gender;

#endif  // EVOL_ENUM_GENDER