예제 #1
0
 public Pop(Template template)
 {
     Setup (template);
 }
예제 #2
0
 internal void Setup(Template template)
 {
     _api = template._api;
     _parent = template.Pops();
     template_id = template._id;
     unpopulated_api_tags = template.api_tags;
     unpopulated_api_regions = new Dictionary<string, Dictionary<string, string>>();
     foreach (KeyValuePair<string, Dictionary<string, string>> entry in template.api_regions)
         unpopulated_api_regions.Add(entry.Key, entry.Value);
     title = template.title;
     name = template.name;
 }