24 lines
253 B
C++
24 lines
253 B
C++
#ifndef CONFIG_H
|
|
#define CONFIG_H
|
|
|
|
#include <cstdint>
|
|
|
|
namespace PokEng {
|
|
|
|
// Generation support
|
|
enum class Generation : uint8_t {
|
|
I = 1,
|
|
II = 2,
|
|
III = 3,
|
|
IV = 4,
|
|
V = 5,
|
|
VI = 6,
|
|
VII = 7,
|
|
VIII = 8,
|
|
IX = 9
|
|
};
|
|
|
|
} // namespace PokEng
|
|
|
|
|
|
#endif |