Ejemplo n.º 1
0
Archivo: Main.cs Proyecto: kwsch/PKHeX
 public static PKM getPKMfromDestination(SaveFile SAV)
 {
     int o = slotDestinationOffset;
     return DestinationParty ? SAV.getPartySlot(o) : SAV.getStoredSlot(o);
 }
Ejemplo n.º 2
0
Archivo: Main.cs Proyecto: kwsch/PKHeX
 // PKM Get Set
 public static PKM getPKMfromSource(SaveFile SAV)
 {
     int o = slotSourceOffset;
     return SourceParty ? SAV.getPartySlot(o) : SAV.getStoredSlot(o);
 }