Peoplemon  0.1.0
Peoplemon 3 game source documentation
Gender.hpp
Go to the documentation of this file.
1 #ifndef CORE_PLAYER_GENDER_HPP
2 #define CORE_PLAYER_GENDER_HPP
3 
4 #include <cstdint>
5 
13 namespace core
14 {
16 namespace player
17 {
24 enum struct Gender : std::uint8_t { Boy = 1, Girl = 2 };
25 
26 } // namespace player
27 } // namespace core
28 
29 #endif
Gender
Possible genders for the player.
Definition: Gender.hpp:24
Core classes and functionality for both the editor and game.