11 lines
223 B
C++
11 lines
223 B
C++
|
#ifndef PKMNLIB_MOVECATEGORY_HPP
|
||
|
#define PKMNLIB_MOVECATEGORY_HPP
|
||
|
|
||
|
#include <cstdint>
|
||
|
|
||
|
namespace PkmnLib::Library {
|
||
|
enum class MoveCategory : uint8_t { Physical, Special, Status };
|
||
|
}
|
||
|
|
||
|
#endif // PKMNLIB_MOVECATEGORY_HPP
|