mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-18 00:13:10 +00:00
11 lines
296 B
C#
11 lines
296 B
C#
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Generation 7 Static Encounter (<see cref="GameVersion.GG"/>
|
|
/// </summary>
|
|
/// <inheritdoc cref="EncounterStatic"/>
|
|
public sealed record EncounterStatic7b : EncounterStatic
|
|
{
|
|
public override int Generation => 7;
|
|
}
|
|
}
|