mirror of
https://github.com/mm201/pkmn-classic-framework.git
synced 2026-08-02 08:03:58 -05:00
32 lines
640 B
C#
32 lines
640 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using PkmnFoundations.Support;
|
|
|
|
namespace PkmnFoundations.Structures
|
|
{
|
|
public class TrainerProfile5 : TrainerProfileBase
|
|
{
|
|
public TrainerProfile5() : base()
|
|
{
|
|
}
|
|
|
|
public TrainerProfile5(int pid, byte[] data) : base(pid, data)
|
|
{
|
|
}
|
|
|
|
public EncodedString5 Name
|
|
{
|
|
get
|
|
{
|
|
return new EncodedString5(Data, 8, 16);
|
|
}
|
|
}
|
|
|
|
public TrainerProfile5 Clone()
|
|
{
|
|
return new TrainerProfile5(PID, Data.ToArray());
|
|
}
|
|
}
|
|
}
|