Files
pokemon-battle-engine/include/core/config.h
cdemeyer-teachx ee337f001a codebase refactor
2025-08-15 12:38:44 +09:00

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