mirror of
https://github.com/kwsch/pkNX.git
synced 2026-06-01 01:37:19 -05:00
15 lines
372 B
C#
15 lines
372 B
C#
using System.Collections.Generic;
|
|
|
|
namespace pkNX.Structures
|
|
{
|
|
public class VsTrainer
|
|
{
|
|
public int ID { get; set; }
|
|
public string Name { get; set; }
|
|
public TrainerData Self { get; set; }
|
|
public readonly List<TrainerPoke> Team = new(6);
|
|
|
|
public TrainerClass GetClass(IList<TrainerClass> list) => list[Self.Class];
|
|
}
|
|
}
|