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