mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-12 11:12:29 +00:00
15 lines
214 B
C++
15 lines
214 B
C++
|
|
#ifndef CLIENTOBJECT_TYPES_HPP
|
||
|
|
#define CLIENTOBJECT_TYPES_HPP
|
||
|
|
|
||
|
|
|
||
|
|
enum UNIT_SEX {
|
||
|
|
UNITSEX_MALE = 0x0,
|
||
|
|
UNITSEX_FEMALE = 0x1,
|
||
|
|
UNITSEX_NONE = 0x2,
|
||
|
|
UNITSEX_LAST = 0x3,
|
||
|
|
UNITSEX_BOTH = 0x3,
|
||
|
|
};
|
||
|
|
|
||
|
|
|
||
|
|
#endif
|