mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-24 04:53:08 +00:00
6c6b3ae4b6
Add in frametype, rename classes for more coherent structure
21 lines
488 B
C#
21 lines
488 B
C#
namespace PKHeX.Core
|
|
{
|
|
public class Frame
|
|
{
|
|
public readonly FrameType FrameType;
|
|
|
|
public uint Seed { get; set; }
|
|
public readonly LeadRequired Lead;
|
|
public bool CuteCharm { get; set; }
|
|
|
|
public uint ESV { get; set; }
|
|
public bool SuctionCups { get; set; }
|
|
|
|
public Frame(uint seed, FrameType type, LeadRequired lead)
|
|
{
|
|
Seed = seed;
|
|
Lead = lead;
|
|
FrameType = type;
|
|
}
|
|
}
|
|
}
|