Peoplemon  0.1.0
Peoplemon 3 game source documentation
Ailment.hpp
Go to the documentation of this file.
1 #ifndef CORE_PEOPLEMON_AILMENT_HPP
2 #define CORE_PEOPLEMON_AILMENT_HPP
3 
4 #include <cstdint>
5 
6 namespace core
7 {
8 namespace pplmn
9 {
16 enum struct Ailment : std::uint8_t {
17  None = 0,
18  Annoyed = 2,
19  Frustrated = 3,
20  Sticky = 5,
21  Sleep = 6,
22  Frozen = 7
23 };
24 
25 } // namespace pplmn
26 } // namespace core
27 
28 #endif
Ailment
Represents an ailment that a Peoplemon can have.
Definition: Ailment.hpp:16
Core classes and functionality for both the editor and game.