CreatureLib/src/Library/Gender.hpp
2019-10-06 13:50:52 +02:00

19 lines
395 B
C++

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