mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 08:47:14 +00:00
18 lines
No EOL
613 B
C#
18 lines
No EOL
613 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<EvoCriteria> vs, int minLevel)
|
|
=> Enumerable.Empty<EncounterSlot>();
|
|
|
|
protected override IEnumerable<EncounterSlot> GetFilteredSlots(PKM pkm, IEnumerable<EncounterSlot> slots, int minLevel)
|
|
=> Enumerable.Empty<EncounterSlot>();
|
|
}
|
|
} |