#ifndef CREATURELIB_GENDER_HPP #define CREATURELIB_GENDER_HPP #include #include 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