mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 16:48:01 +00:00
17 lines
416 B
C#
17 lines
416 B
C#
|
namespace PKHeX.Core
|
||
|
{
|
||
|
public class TeamLock
|
||
|
{
|
||
|
public int Species;
|
||
|
public string Comment;
|
||
|
public NPCLock[] Locks;
|
||
|
|
||
|
internal TeamLock Clone()
|
||
|
{
|
||
|
var c = new TeamLock { Comment = Comment, Locks = (NPCLock[])Locks.Clone() };
|
||
|
for (int i = 0; i < Locks.Length; i++)
|
||
|
Locks[i] = Locks[i].Clone();
|
||
|
return c;
|
||
|
}
|
||
|
}
|
||
|
}
|