mirror of
https://github.com/LNH-team/pico-loader.git
synced 2026-01-11 20:29:23 +01:00
10 lines
165 B
C
10 lines
165 B
C
#pragma once
|
|
|
|
/// @brief Enum representing a Pokemon game version with IR-sensor based anti-piracy
|
|
enum class PokemonIrVersion : u32
|
|
{
|
|
Hgss,
|
|
Bw1,
|
|
Bw2
|
|
};
|