mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 00:37:11 +00:00
13 lines
365 B
C#
13 lines
365 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;
|
|
|
|
public EncounterStatic7b(GameVersion game) : base(game) { }
|
|
}
|
|
}
|