PKHeX/PKHeX.Core/Saves/Substructures/Battle Videos/TurnStartInstruction.cs
2018-08-18 20:10:34 -07:00

14 lines
No EOL
288 B
C#

namespace PKHeX.Core
{
public struct TurnStartInstruction
{
public TurnStartCode TurnCode;
public int Count;
public TurnStartInstruction(byte Op)
{
TurnCode = (TurnStartCode)(Op >> 4);
Count = Op & 0xF;
}
}
}