/// <summary>
 /// Heal the user for the given amount -1 to fully heal.
 /// </summary>
 /// <param name="amount">Amount to heal. -1 Full heath.</param>
 public void Heal(int amount)
 {
     Stat.Heal(amount);
 }