Exemplo n.º 1
0
        public BCMBuffCondition(MultiBuffClassCondition condition)
        {
            if (condition == null)
            {
                return;
            }

            Counter = condition.Counter;
            Type    = condition.ConditionType.ToString();
            Value   = condition.Value;
        }
Exemplo n.º 2
0
 public BCMBuffCondition([NotNull] MultiBuffClassCondition condition)
 {
     Counter = condition.Counter;
     Type    = condition.ConditionType.ToString();
     Value   = condition.Value;
 }