mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-19 00:43:14 +00:00
9 lines
151 B
C#
9 lines
151 B
C#
|
namespace PKHeX.Core
|
|||
|
{
|
|||
|
public interface ISanityChecksum
|
|||
|
{
|
|||
|
ushort Sanity { get; set; }
|
|||
|
ushort Checksum { get; set; }
|
|||
|
}
|
|||
|
}
|