mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-30 15:59:13 +00:00
13 lines
314 B
C#
13 lines
314 B
C#
|
using System;
|
|||
|
|
|||
|
namespace PKHeX.Core;
|
|||
|
|
|||
|
public interface ITechRecord8
|
|||
|
{
|
|||
|
ReadOnlySpan<bool> TechRecordPermitFlags { get; }
|
|||
|
ReadOnlySpan<int> TechRecordPermitIndexes { get; }
|
|||
|
bool GetMoveRecordFlag(int index);
|
|||
|
void SetMoveRecordFlag(int index, bool state = true);
|
|||
|
bool GetMoveRecordFlagAny();
|
|||
|
}
|