mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-27 06:20:25 +00:00
e1414a0bea
No code changes
12 lines
314 B
C#
12 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();
|
|
}
|