mirror of
https://github.com/kwsch/PKHeX
synced 2025-02-17 13:58:33 +00:00
15 lines
No EOL
408 B
C#
15 lines
No EOL
408 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace PKHeX.Core
|
|
{
|
|
/// <inheritdoc />
|
|
/// <summary>
|
|
/// Fake encounter area used to mock data
|
|
/// </summary>
|
|
public sealed class EncounterAreaFake : EncounterArea
|
|
{
|
|
public override IEnumerable<EncounterSlot> GetMatchingSlots(PKM pkm, IReadOnlyList<EvoCriteria> chain) =>
|
|
Array.Empty<EncounterSlot>();
|
|
}
|
|
} |