mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
429c80e9f5
Co-Authored-By: SciresM <8676005+SciresM@users.noreply.github.com>
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();
|
|
}
|