public DysonSphereSettings GatherDysonSphereSettings()
    {
        DysonSphereSettings dysonSphereSettings = new DysonSphereSettings(currentEnergyProduction, maxStructurePoints, currentStructurePoints, currentAutoRepairState);

        return(dysonSphereSettings);
    }
 public void ConfigureFromControlPanel(DysonSphereSettings dysonSphereSettings)
 {
 }
    public void SendSettingsToControlPanel()
    {
        DysonSphereSettings dysonSphereSettings = GatherDysonSphereSettings();

        DysonSphereControlPanel.instance.ReceiveSettings(dysonSphereSettings);
    }