예제 #1
0
파일: ELWiki.cs 프로젝트: zybexXL/Zelda
 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;
 }
예제 #2
0
파일: ELWiki.cs 프로젝트: zybexXL/Zelda
 public ELFunction(ELCategory cat, ELFunctions function, string blurb, string url = null, string proto = null)
     : this(cat, function.ToString(), blurb, url, proto)
 {
 }