Files
CreatureLib/src/Library/Gender.hpp
Deukhoofd 5e6572aca5
Some checks failed
continuous-integration/drone/push Build is failing
Move several classes from Core to Arbutils.
2020-02-26 13:51:16 +01:00

16 lines
388 B
C++

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