Exemple #1
0
 public XDustTemplate(String name, XDustNode rootNode, String sourceFile)
 {
     this.Name = name;
     this.RootNode = rootNode;
     this.SourceFile = sourceFile;
 }
Exemple #2
0
 public void SetBlock(String name, XDustNode value)
 {
     this.Blocks[name] = value;
 }
Exemple #3
0
 public RenderChain(RenderChain head, XDustNode tail)
 {
     this.Head = head;
     this.Tail = tail;
 }