#ifndef CREATURELIB_GENDER_HPP #define CREATURELIB_GENDER_HPP #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 class Gender : uint8_t { Male, Female, Genderless }; } #endif //CREATURELIB_GENDER_HPP