Ejemplo n.º 1
0
        public Structure SpawnStructure(string name, Cell cell, Faction faction)
        {
            var structure = CreateNewStructure(name);

            structure.Cell = cell;
            faction?.AddStructure(structure);

            structure.Load();

            return(SpawnStructure(structure));
        }