Example #1
0
        public Project()
        {
            //NOP
            sources = new SourceList();

            layers = new BuildLayerList();
            targets = new BuildTargetList();
            terrains = new TerrainList();

            graphs = new FilterGraphList();
            resources = new ResourceList();
            scripts = new ScriptList();
            mogreLocations = new List<MogreLocation>();
        }
Example #2
0
        public Project()
        {
            //NOP
            sources = new SourceList();

            layers   = new BuildLayerList();
            targets  = new BuildTargetList();
            terrains = new TerrainList();

            graphs         = new FilterGraphList();
            resources      = new ResourceList();
            scripts        = new ScriptList();
            mogreLocations = new List <MogreLocation>();
        }
Example #3
0
 public BuildTarget()
 {
     layers = new BuildLayerList();
 }