Ejemplo n.º 1
0
 public ELFunction(ELCategory cat, string name, string blurb, string url = null, string proto = null)
 {
     this.function = name;
     this.blurb    = blurb;
     category      = cat;
     wikiUrl       = url;
     prototype     = proto;
 }
Ejemplo n.º 2
0
 public ELFunction(ELCategory cat, ELFunctions function, string blurb, string url = null, string proto = null)
     : this(cat, function.ToString(), blurb, url, proto)
 {
 }