示例#1
0
    public DysonSphereSettings GatherDysonSphereSettings()
    {
        DysonSphereSettings dysonSphereSettings = new DysonSphereSettings(currentEnergyProduction, maxStructurePoints, currentStructurePoints, currentAutoRepairState);

        return(dysonSphereSettings);
    }
示例#2
0
 public void ConfigureFromControlPanel(DysonSphereSettings dysonSphereSettings)
 {
 }
示例#3
0
    public void SendSettingsToControlPanel()
    {
        DysonSphereSettings dysonSphereSettings = GatherDysonSphereSettings();

        DysonSphereControlPanel.instance.ReceiveSettings(dysonSphereSettings);
    }