mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-24 04:53:08 +00:00
25 lines
No EOL
623 B
C#
25 lines
No EOL
623 B
C#
namespace PKHeX.Core
|
|
{
|
|
public sealed class TeamLock
|
|
{
|
|
public readonly int Species;
|
|
public readonly string Comment;
|
|
public readonly NPCLock[] Locks;
|
|
|
|
internal TeamLock Clone() => new(Species, Comment, (NPCLock[])Locks.Clone());
|
|
|
|
public TeamLock(int species, NPCLock[] locks)
|
|
{
|
|
Species = species;
|
|
Locks = locks;
|
|
Comment = string.Empty;
|
|
}
|
|
|
|
public TeamLock(int species, string comment, NPCLock[] locks)
|
|
{
|
|
Species = species;
|
|
Locks = locks;
|
|
Comment = comment;
|
|
}
|
|
}
|
|
} |