feat(object): add UNIT_SEX enum

This commit is contained in:
fallenoak 2025-10-05 20:41:51 -05:00
parent be3447983b
commit 0e1a8582c1
No known key found for this signature in database
GPG Key ID: 7628F8E61AEA070D

12
src/object/Types.hpp Normal file
View File

@ -0,0 +1,12 @@
#ifndef OBJECT_TYPES_HPP
#define OBJECT_TYPES_HPP
enum UNIT_SEX {
UNITSEX_MALE = 0,
UNITSEX_FEMALE = 1,
UNITSEX_NONE = 2,
UNITSEX_LAST,
UNITSEX_BOTH = 3,
};
#endif