From f3374aee1073c77dc6f26d0805cdf8759cbd1ee3 Mon Sep 17 00:00:00 2001 From: Kurt Date: Wed, 21 Oct 2015 22:54:50 -0700 Subject: [PATCH] Add constant sizes for easy reference in code --- Misc/PK6.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Misc/PK6.cs b/Misc/PK6.cs index 3abd44266..f15accd2c 100644 --- a/Misc/PK6.cs +++ b/Misc/PK6.cs @@ -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();