CreatureLib/src/Library/Gender.hpp

14 lines
363 B
C++

#ifndef CREATURELIB_GENDER_HPP
#define CREATURELIB_GENDER_HPP
#include <Arbutils/Enum.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, u8, Male, Female, Genderless)
}
#endif // CREATURELIB_GENDER_HPP