コード例 #1
0
ファイル: Annotations.cs プロジェクト: xeronith/gdk-for-unity
 public void Method(string declaration, Func <IEnumerable <string> > populate)
 {
     ParentBlock.Add(new MethodBlock(declaration, populate, Annotations));
 }
コード例 #2
0
ファイル: Annotations.cs プロジェクト: xeronith/gdk-for-unity
 public void Method(MethodBlock methodBlock)
 {
     ParentBlock.Add(methodBlock);
 }
コード例 #3
0
ファイル: Annotations.cs プロジェクト: xeronith/gdk-for-unity
 public void Method(string declaration, Action <MethodBlock> populate)
 {
     ParentBlock.Add(new MethodBlock(declaration, populate, Annotations));
 }