예제 #1
0
 public EnemyData(EnemyData other)
 {
     name     = other.name;
     raceId   = new RaceID(other.raceId);
     aiParams = new AiParameters(other.aiParams);
     items    = new List <ItemData>(other.items);
 }
예제 #2
0
 public AiParameters(AiParameters other)
 {
     aiType  = other.aiType;
     attacks = new List <SkillID>(other.attacks);
 }