Beispiel #1
0
 public Nodes.Node GetNodeForTag(NodeTags tag)
 {
     for (int i = 0; i < nodes.Count; i++)
     {
         if (nodes[i].tag == tag)
         {
             return(nodes[i].node);
         }
     }
     return(null);
 }
 public static IQuarkTargetGroup WithTag(this IQuarkTargetGroup targetGroup, NodeTags tags)
 {
     return(targetGroup);
 }
 public static QuarkConfigurationBuilder WithTargets(
     this QuarkConfigurationBuilder builder,
     string pattern,
     NodeTags tags)
 => throw new NotImplementedException();