Add constant sizes for easy reference in code

This commit is contained in:
Kurt 2015-10-21 22:54:50 -07:00
parent 2e5f447dce
commit f3374aee10

View file

@ -7,6 +7,9 @@ namespace PKHeX
{
public class PK6 : PKX
{
internal static readonly int SIZE_PARTY = 0x104;
internal static readonly int SIZE_STORED = 0xE8;
public PK6(byte[] pkx, string ident = null)
{
Data = (byte[])pkx.Clone();