mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-23 06:26:12 -05: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();
|
|
}
|