public GBAPokePC(IGameSave gameSave)
 {
     this.gameSave   = gameSave;
     this.raw        = null;
     this.boxes      = null;
     this.party      = null;
     this.currentBox = 0;
 }
 public void AddParty(byte[] data)
 {
     this.party = new GBAPokeParty(this, data);
 }