Example #1
0
File: Main.cs Project: kwsch/PKHeX
 public static PKM getPKMfromDestination(SaveFile SAV)
 {
     int o = slotDestinationOffset;
     return DestinationParty ? SAV.getPartySlot(o) : SAV.getStoredSlot(o);
 }
Example #2
0
File: Main.cs Project: kwsch/PKHeX
 // PKM Get Set
 public static PKM getPKMfromSource(SaveFile SAV)
 {
     int o = slotSourceOffset;
     return SourceParty ? SAV.getPartySlot(o) : SAV.getStoredSlot(o);
 }