Example #1
0
 public DamageModel(int maxHealth, TagSynergy[] armor)
 {
     this.roleModel = null;
     this.maxHealth = maxHealth;
     this.armor     = armor;
     this.health    = maxHealth;
 }
Example #2
0
 public void SetupRoleModel(IActorDamageModelRef model)
 {
     this.roleModel = model;
     this.health    = MaxHealth;
 }