コード例 #1
0
        public AttackComplex(iVar <T> minimo, iVar <T> maximo)
        {
            ataques = new Dictionary <string, iVar <T> >();

            max = maximo;
            min = minimo;
        }
コード例 #2
0
 public AttackSimple(string tipo, iVar <T> val)
 {
     this.tipo = tipo;
     ataque    = val;
 }