PKHeX/PKHeX.Core/Legality/RNG/Frame/Frame.cs
Kurt 6c6b3ae4b6 Refactoring
Add in frametype, rename classes for more coherent structure
2017-05-14 14:42:18 -07:00

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;
}
}
}