コード例 #1
0
 public Player(int health, int mana, int damage, creatureTypes type)
 {
     Health = health;
     Mana   = mana;
     Damage = damage;
     Type   = type;
 }
コード例 #2
0
 public Enemy(int health, int damage, creatureTypes type)
 {
     Health = health;
     Damage = damage;
     Type   = type;
 }