mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-28 15:00:36 +00:00
Add constant sizes for easy reference in code
This commit is contained in:
parent
2e5f447dce
commit
f3374aee10
1 changed files with 3 additions and 0 deletions
|
@ -7,6 +7,9 @@ namespace PKHeX
|
||||||
{
|
{
|
||||||
public class PK6 : PKX
|
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)
|
public PK6(byte[] pkx, string ident = null)
|
||||||
{
|
{
|
||||||
Data = (byte[])pkx.Clone();
|
Data = (byte[])pkx.Clone();
|
||||||
|
|
Loading…
Reference in a new issue