mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
13 lines
231 B
C#
13 lines
231 B
C#
namespace PKHeX.Core;
|
|
|
|
/// <summary>
|
|
/// Enumerates the various side game data formats that can enter HOME.
|
|
/// </summary>
|
|
public enum HomeGameDataFormat : byte
|
|
{
|
|
None = 0,
|
|
PB7 = 1,
|
|
PK8 = 2,
|
|
PA8 = 3,
|
|
PB8 = 4,
|
|
}
|