mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-18 08:23:12 +00:00
11 lines
134 B
C#
11 lines
134 B
C#
|
namespace PKHeX.Core;
|
|||
|
|
|||
|
public enum HomeGameDataFormat : byte
|
|||
|
{
|
|||
|
None = 0,
|
|||
|
PB7 = 1,
|
|||
|
PK8 = 2,
|
|||
|
PA8 = 3,
|
|||
|
PB8 = 4,
|
|||
|
}
|