mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-14 06:32:35 +00:00
14 lines
288 B
C#
14 lines
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;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|