RTSEngine.Data.Team.RTSRace.LoadBuilding C# (CSharp) Method

LoadBuilding() public method

public LoadBuilding ( ReflectedScript>.Dictionary d, int index, string rootPath, string file ) : void
d ReflectedScript>.Dictionary
index int
rootPath string
file string
return void
        public void LoadBuilding(Dictionary<string, ReflectedScript> d, int index, string rootPath, string file)
        {
            Buildings[index] = RTSBuildingDataParser.ParseData(d, new FileInfo(Path.Combine(rootPath, file)), index);
        }