mirror of
https://github.com/mm201/pkmn-classic-framework.git
synced 2026-04-19 23:27:29 -05:00
16 lines
372 B
C#
16 lines
372 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace PkmnFoundations.Support
|
|
{
|
|
public struct ValidationSummary
|
|
{
|
|
public bool IsValid { get; set; }
|
|
|
|
// todo: Put reasons validation failed here, such as out-of-range values, bad egg, EVs > 510, etc.
|
|
// public bool TooMuchEvs {get; set;}
|
|
}
|
|
}
|