public Player(int health, int mana, int damage, creatureTypes type)
 {
     Health = health;
     Mana   = mana;
     Damage = damage;
     Type   = type;
 }
 public Enemy(int health, int damage, creatureTypes type)
 {
     Health = health;
     Damage = damage;
     Type   = type;
 }