Example #1
0
 public override void AddToManifest(UdnManifest Manifest)
 {
     Manifest.Add(Name, this);
     foreach (APIPage SubCategory in SubCategories.Values)
     {
         SubCategory.AddToManifest(Manifest);
     }
     foreach (APIPage Action in Actions)
     {
         Action.AddToManifest(Manifest);
     }
 }