mirror of
https://github.com/kwsch/PKHeX
synced 2025-01-09 19:18:49 +00:00
13 lines
255 B
C#
13 lines
255 B
C#
|
namespace PKHeX.Core;
|
||
|
|
||
|
/// <summary>
|
||
|
/// Is tagged as a "Fateful Encounter".
|
||
|
/// </summary>
|
||
|
public interface IFatefulEncounterReadOnly
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Is tagged as a "Fateful Encounter".
|
||
|
/// </summary>
|
||
|
bool FatefulEncounter { get; }
|
||
|
}
|