Ejemplo n.º 1
0
 public AvailableConstruc(E_Construccion cat, List <object> Reqs, string nom = "Mina de Metal", uint max = 99)
 {
     Categoria  = cat;
     Nombre     = nom;
     MaxLevel   = max;
     Requisitos = new List <object>(Reqs);
 }
Ejemplo n.º 2
0
 public AvailableConstruc(E_Construccion cat, string nom = "Mina de Metal", uint max = 99)
 {
     Categoria = cat;
     Nombre    = nom;
     MaxLevel  = max;
 }