Files
CreatureLib/src/Library/Gender.hpp
2020-02-12 19:48:56 +01:00

16 lines
387 B
C++

#ifndef CREATURELIB_GENDER_HPP
#define CREATURELIB_GENDER_HPP
#include <cstdint>
#include "../Core/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, uint8_t, Male, Female, Genderless)
}
#endif // CREATURELIB_GENDER_HPP