mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-07-21 09:41:00 -05:00
Add date validation for lgpe go park encounters (deferred, now finally remembered to implement?)
10 lines
169 B
C#
10 lines
169 B
C#
namespace PKHeX.Core;
|
|
|
|
public interface IContext
|
|
{
|
|
/// <summary>
|
|
/// The Context the data originated in.
|
|
/// </summary>
|
|
EntityContext Context { get; }
|
|
}
|