12 lines
317 B
C++
12 lines
317 B
C++
#ifndef CREATURELIB_ITEMCATEGORY_HPP
|
|
#define CREATURELIB_ITEMCATEGORY_HPP
|
|
|
|
#include <Arbutils/Enum.hpp>
|
|
#include <cstdint>
|
|
|
|
namespace CreatureLib::Library {
|
|
ENUM(ItemCategory, uint8_t, MiscItem, CaptureDevice, Medicine, Berry, MoveLearner, VariantChanger, KeyItem, Mail)
|
|
}
|
|
|
|
#endif // CREATURELIB_ITEMCATEGORY_HPP
|