pkmn-classic-framework/library/Support/ValidationSummary.cs
2023-10-30 03:18:09 -04:00

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;}
}
}