Beispiel #1
0
Datei: If.cs Projekt: 7shi/LLPML
 public static If New(BlockBase parent)
 {
     var ret = new If();
     ret.init(parent);
     return ret;
 }
Beispiel #2
0
Datei: If.cs Projekt: 7shi/LLPML
 public static CondBlock New(If parent)
 {
     var ret = new CondBlock();
     ret.Parent = parent;
     return ret;
 }