mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
14 lines
No EOL
288 B
C#
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;
|
|
}
|
|
}
|
|
} |