Example #1
0
 public void SetPerfectAvoid(bool flag)
 {
     if (flag)
     {
         this.hitType |= LogSkill.EHitTypes.PerfectAvoid;
     }
     else
     {
         this.hitType &= ~LogSkill.EHitTypes.PerfectAvoid;
     }
 }
Example #2
0
 public void SetDefend(bool flag)
 {
     if (flag)
     {
         this.hitType |= LogSkill.EHitTypes.Defend;
     }
     else
     {
         this.hitType &= ~LogSkill.EHitTypes.Defend;
     }
 }