mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-19 20:28:24 -05:00
Adds support for Scarlet & Violet. Co-Authored-By: SciresM <8676005+SciresM@users.noreply.github.com> Co-Authored-By: Matt <17801814+sora10pls@users.noreply.github.com> Co-Authored-By: Lusamine <30205550+Lusamine@users.noreply.github.com>
15 lines
413 B
C#
15 lines
413 B
C#
namespace PKHeX.Core;
|
|
|
|
/// <summary>
|
|
/// Enumeration indicating if a date range check is satisfied.
|
|
/// </summary>
|
|
public enum EncounterServerDateCheck
|
|
{
|
|
/// <summary> No need to consider date range. </summary>
|
|
None,
|
|
/// <summary> Date does fall within the range it was available. </summary>
|
|
Valid,
|
|
/// <summary> Date does NOT fall within the range it was available. </summary>
|
|
Invalid,
|
|
}
|