Esempio n. 1
0
            public SystemSpecifier System <T>()
                where T : ISystem
            {
                var spec = SystemSpec.Construct <T>();

                this.SystemSpecs.Add(spec);

                return(new SystemSpecifier(this, spec));
            }
Esempio n. 2
0
 public SystemSpecifier(PipelineSpecifier parent, SystemSpec spec)
 {
     this.Parent = parent;
     this.Spec   = spec;
 }
Esempio n. 3
0
 private static SystemSpec Spec() => SystemSpec.Construct <SoloSystem>();