mirror of
https://github.com/kwsch/PKHeX
synced 2025-03-03 06:47:25 +00:00
10 lines
220 B
C#
10 lines
220 B
C#
|
namespace PKHeX.Core;
|
||
|
|
||
|
/// <summary>
|
||
|
/// Interface for an <see cref="IEncounterTemplate"/> that can be one of many forms.
|
||
|
/// </summary>
|
||
|
public interface IEncounterFormRandom
|
||
|
{
|
||
|
bool IsRandomUnspecificForm { get; }
|
||
|
}
|