Ejemplo n.º 1
0
 public static byte[] WriteTeam(IList <TrainerPoke> team, TrainerData _) => team.SelectMany(z => z.Write()).ToArray();
Ejemplo n.º 2
0
 public static TrainerPoke7b[] ReadTeam(byte[] data, TrainerData _) => data.GetArray((x, offset) => new TrainerPoke7b(offset, x), SIZE);