summaryrefslogblamecommitdiff
path: root/src/ecommon/enum/gender.h
blob: 8c747fdc9222d2c8480be8d34ca8ccf2f13d1213 (plain) (tree)
1
2
3
4
5
6
7
8
9








                                                                         
                                                        





                                        
                  


                           
// 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 the hidden value
 */
typedef enum Gender
{
    GENDER_FEMALE = SEX_FEMALE,
    GENDER_MALE = SEX_MALE,
    __UNUSED_GENDER_SERVER = SEX_SERVER,
    GENDER_HIDDEN,
} Gender;

#endif  // EVOL_ENUM_GENDER