├── .gitattributes ├── .gitignore ├── GameData └── StageRecovery │ ├── License.txt │ ├── SR-Readme.txt │ ├── SR.version │ ├── icon.png │ └── icon_blizzy.png ├── StageRecovery.sln ├── StageRecovery ├── APIManager.cs ├── CrewWithSeat.cs ├── EditorGUI.cs ├── FlightGUI.cs ├── Properties │ └── AssemblyInfo.cs ├── RecoveryControllerWrapper.cs ├── RecoveryItem.cs ├── Settings.cs ├── SettingsGUI.cs ├── StageRecovery.cs ├── StageRecovery.csproj ├── StageRecoveryWrapper.cs └── ToolbarWrapper.cs └── Tests └── Tourist_Contracts ├── tourist_prelaunch.loadmeta ├── tourist_prelaunch.sfs ├── tourist_presep.loadmeta └── tourist_presep.sfs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magico13/StageRecovery/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magico13/StageRecovery/HEAD/.gitignore -------------------------------------------------------------------------------- /GameData/StageRecovery/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magico13/StageRecovery/HEAD/GameData/StageRecovery/License.txt -------------------------------------------------------------------------------- /GameData/StageRecovery/SR-Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magico13/StageRecovery/HEAD/GameData/StageRecovery/SR-Readme.txt -------------------------------------------------------------------------------- /GameData/StageRecovery/SR.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magico13/StageRecovery/HEAD/GameData/StageRecovery/SR.version -------------------------------------------------------------------------------- /GameData/StageRecovery/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magico13/StageRecovery/HEAD/GameData/StageRecovery/icon.png -------------------------------------------------------------------------------- /GameData/StageRecovery/icon_blizzy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magico13/StageRecovery/HEAD/GameData/StageRecovery/icon_blizzy.png -------------------------------------------------------------------------------- /StageRecovery.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magico13/StageRecovery/HEAD/StageRecovery.sln -------------------------------------------------------------------------------- /StageRecovery/APIManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magico13/StageRecovery/HEAD/StageRecovery/APIManager.cs -------------------------------------------------------------------------------- /StageRecovery/CrewWithSeat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magico13/StageRecovery/HEAD/StageRecovery/CrewWithSeat.cs -------------------------------------------------------------------------------- /StageRecovery/EditorGUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magico13/StageRecovery/HEAD/StageRecovery/EditorGUI.cs -------------------------------------------------------------------------------- /StageRecovery/FlightGUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magico13/StageRecovery/HEAD/StageRecovery/FlightGUI.cs -------------------------------------------------------------------------------- /StageRecovery/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magico13/StageRecovery/HEAD/StageRecovery/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /StageRecovery/RecoveryControllerWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magico13/StageRecovery/HEAD/StageRecovery/RecoveryControllerWrapper.cs -------------------------------------------------------------------------------- /StageRecovery/RecoveryItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magico13/StageRecovery/HEAD/StageRecovery/RecoveryItem.cs -------------------------------------------------------------------------------- /StageRecovery/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magico13/StageRecovery/HEAD/StageRecovery/Settings.cs -------------------------------------------------------------------------------- /StageRecovery/SettingsGUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magico13/StageRecovery/HEAD/StageRecovery/SettingsGUI.cs -------------------------------------------------------------------------------- /StageRecovery/StageRecovery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magico13/StageRecovery/HEAD/StageRecovery/StageRecovery.cs -------------------------------------------------------------------------------- /StageRecovery/StageRecovery.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magico13/StageRecovery/HEAD/StageRecovery/StageRecovery.csproj -------------------------------------------------------------------------------- /StageRecovery/StageRecoveryWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magico13/StageRecovery/HEAD/StageRecovery/StageRecoveryWrapper.cs -------------------------------------------------------------------------------- /StageRecovery/ToolbarWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magico13/StageRecovery/HEAD/StageRecovery/ToolbarWrapper.cs -------------------------------------------------------------------------------- /Tests/Tourist_Contracts/tourist_prelaunch.loadmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magico13/StageRecovery/HEAD/Tests/Tourist_Contracts/tourist_prelaunch.loadmeta -------------------------------------------------------------------------------- /Tests/Tourist_Contracts/tourist_prelaunch.sfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magico13/StageRecovery/HEAD/Tests/Tourist_Contracts/tourist_prelaunch.sfs -------------------------------------------------------------------------------- /Tests/Tourist_Contracts/tourist_presep.loadmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magico13/StageRecovery/HEAD/Tests/Tourist_Contracts/tourist_presep.loadmeta -------------------------------------------------------------------------------- /Tests/Tourist_Contracts/tourist_presep.sfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magico13/StageRecovery/HEAD/Tests/Tourist_Contracts/tourist_presep.sfs --------------------------------------------------------------------------------