Initial commit
This commit is contained in:
18
src/Library/Gender.hpp
Normal file
18
src/Library/Gender.hpp
Normal file
@@ -0,0 +1,18 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user