CreatureLib/src/Library/Gender.hpp

13 lines
339 B
C++

#ifndef CREATURELIB_GENDER_HPP
#define CREATURELIB_GENDER_HPP
namespace CreatureLib::Library {
/*!
\brief Might be somewhat controversial nowadays, but as many creature battling games only have two genders, we'll
hardcode those.
*/
ENUM(Gender, uint8_t, Male, Female, Genderless)
}
#endif // CREATURELIB_GENDER_HPP