Peoplemon  0.1.0
Peoplemon 3 game source documentation
Category.hpp
Go to the documentation of this file.
1 #ifndef CORE_ITEMS_CATEGORY_HPP
2 #define CORE_ITEMS_CATEGORY_HPP
3 
4 #include <cstdint>
5 
6 namespace core
7 {
8 namespace item
9 {
16 enum struct Category : std::uint8_t {
18  Unknown,
19 
21  Regular,
22 
24  Key,
25 
27  TM,
28 
31 };
32 
33 } // namespace item
34 } // namespace core
35 
36 #endif
Category
Represents a category that an item can belong to. Used for bag sorting.
Definition: Category.hpp:16
@ Peopleball
Peopleballs.
@ Unknown
Unknown item category.
@ Key
Key items. Covers ids [101, 200].
@ TM
TM's. Covers ids [201, 499].
@ Regular
Regular items. Covers ids [1, 100].
Core classes and functionality for both the editor and game.