public void getXP(int xp)
 {
     stats.AddStatAdditive(new StatAdditive(xp, Stat.StatType.Experience, "enemy"));
     // Did player level up?
     if (getLevel() != level)
     {
         LevelUp();
     }
 }