Exemplo n.º 1
0
 public Creature(Creature clone)
 {
     Owner    = clone.Owner;
     Name     = clone.Name;
     Hp       = clone.Hp;
     Luck     = clone.Luck;
     Defence  = clone.Defence;
     Strength = clone.Strength;
 }
Exemplo n.º 2
0
 public Creature(CreatureOwner owner, CreatureName name, int hp, int luck, int defence, int strength)
 {
     Owner    = owner;
     Name     = name;
     Hp       = hp;
     Luck     = luck;
     Defence  = defence;
     Strength = strength;
 }