mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-16 09:08:02 +00:00
13 lines
255 B
C#
13 lines
255 B
C#
|
namespace PKHeX.Core
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Structure containing Mystery Gift Block Data
|
|||
|
/// </summary>
|
|||
|
public class MysteryGiftAlbum
|
|||
|
{
|
|||
|
public MysteryGift[] Gifts;
|
|||
|
public bool[] Flags;
|
|||
|
public uint Seed;
|
|||
|
}
|
|||
|
}
|