mirror of
https://github.com/kwsch/PKHeX
synced 2025-03-06 00:07:32 +00:00
18 lines
610 B
C#
18 lines
610 B
C#
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
|
|||
|
namespace PKHeX.Core
|
|||
|
{
|
|||
|
/// <inheritdoc />
|
|||
|
/// <summary>
|
|||
|
/// Fake encounter area used to mock data
|
|||
|
/// </summary>
|
|||
|
public sealed class EncounterAreaFake : EncounterArea
|
|||
|
{
|
|||
|
protected override IEnumerable<EncounterSlot> GetMatchFromEvoLevel(PKM pkm, IEnumerable<DexLevel> vs, int minLevel)
|
|||
|
=> Enumerable.Empty<EncounterSlot>();
|
|||
|
|
|||
|
protected override IEnumerable<EncounterSlot> GetFilteredSlots(PKM pkm, IEnumerable<EncounterSlot> slots, int minLevel)
|
|||
|
=> Enumerable.Empty<EncounterSlot>();
|
|||
|
}
|
|||
|
}
|