Ejemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Creature"/> class.
 /// </summary>
 public Creature()
 {
     this.initTiebreaker = rand.Next();
     this.monster        = MonsterStat.BlankMonsterStat();
     this.hp             = this.monster.HitPoints;
     this.maxHp          = this.monster.HitPoints;
 }