├── Extras └── RO-Patch.cfg ├── GameData └── StarshipLaunchExpansion │ ├── Category │ ├── Categories.cfg │ ├── Pads.png │ └── SLE_Logo.png │ ├── Flags │ ├── SLE Black.png │ └── SLE White.png │ ├── Localization │ ├── en-us.cfg │ └── es-es.cfg │ ├── Parts │ ├── @thumbs │ │ ├── SLE.SS.OLIT.Base_icon.png │ │ ├── SLE.SS.OLIT.Core_icon.png │ │ ├── SLE.SS.OLIT.MZ_icon.png │ │ ├── SLE.SS.OLIT.Top_icon.png │ │ ├── SLE.SS.OLP_icon.png │ │ └── SLE.SS.TS_icon.png │ ├── KKStatics │ │ ├── SLE_KK_GSE.cfg │ │ ├── SLE_KK_GSE.dds │ │ ├── SLE_KK_GSE.mu │ │ ├── SLE_KK_GSE_NRM.png │ │ ├── SLE_KK_SB_Text.cfg │ │ ├── SLE_KK_SB_Text.dds │ │ ├── SLE_KK_SB_Text.mu │ │ └── SLE_KK_SB_Text_EM.dds │ └── SSPads │ │ ├── SLE_SS_DS.cfg │ │ ├── SLE_SS_OLIT_Base.cfg │ │ ├── SLE_SS_OLIT_Base.dds │ │ ├── SLE_SS_OLIT_Base.mu │ │ ├── SLE_SS_OLIT_Base_Exterior.dds │ │ ├── SLE_SS_OLIT_Base_Exterior_NRM.png │ │ ├── SLE_SS_OLIT_Base_NRM.png │ │ ├── SLE_SS_OLIT_Core.cfg │ │ ├── SLE_SS_OLIT_Core.dds │ │ ├── SLE_SS_OLIT_Core.mu │ │ ├── SLE_SS_OLIT_Core_NRM.png │ │ ├── SLE_SS_OLIT_MZ.cfg │ │ ├── SLE_SS_OLIT_MZ.dds │ │ ├── SLE_SS_OLIT_MZ.mu │ │ ├── SLE_SS_OLIT_MZ_Pulley.dds │ │ ├── SLE_SS_OLIT_Top.cfg │ │ ├── SLE_SS_OLIT_Top.dds │ │ ├── SLE_SS_OLIT_Top.mu │ │ ├── SLE_SS_OLP.cfg │ │ ├── SLE_SS_OLP.mu │ │ ├── SLE_SS_Statics.cfg │ │ ├── SLE_SS_TS.cfg │ │ ├── SLE_SS_TS.mu │ │ ├── SLE_SS_TS1.dds │ │ ├── SLE_SS_TS2.dds │ │ └── SP_OLP.dds │ ├── Patches │ ├── CCTanks-Patch.cfg │ ├── CustomDragCubes.cfg │ ├── Extras.cfg │ ├── MethaloxFueling.cfg │ ├── Resources.cfg │ └── TweakScale.cfg │ ├── Plugin │ └── StarshipLaunchExpansion.dll │ └── Versioning │ ├── SLEChangelog.cfg │ └── StarshipLaunchExpansion.version ├── LICENSE ├── README.md └── Source ├── Modules ├── ModuleSLEAnimate.cs └── ModuleSLEController.cs ├── Properties └── AssemblyInfo.cs ├── StarshipLaunchExpansion.csproj └── StarshipLaunchExpansion.sln /Extras/RO-Patch.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/Extras/RO-Patch.cfg -------------------------------------------------------------------------------- /GameData/StarshipLaunchExpansion/Category/Categories.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/GameData/StarshipLaunchExpansion/Category/Categories.cfg -------------------------------------------------------------------------------- /GameData/StarshipLaunchExpansion/Category/Pads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/GameData/StarshipLaunchExpansion/Category/Pads.png -------------------------------------------------------------------------------- /GameData/StarshipLaunchExpansion/Category/SLE_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/GameData/StarshipLaunchExpansion/Category/SLE_Logo.png -------------------------------------------------------------------------------- /GameData/StarshipLaunchExpansion/Flags/SLE Black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/GameData/StarshipLaunchExpansion/Flags/SLE Black.png -------------------------------------------------------------------------------- /GameData/StarshipLaunchExpansion/Flags/SLE White.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/GameData/StarshipLaunchExpansion/Flags/SLE White.png -------------------------------------------------------------------------------- /GameData/StarshipLaunchExpansion/Localization/en-us.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/GameData/StarshipLaunchExpansion/Localization/en-us.cfg -------------------------------------------------------------------------------- /GameData/StarshipLaunchExpansion/Localization/es-es.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/GameData/StarshipLaunchExpansion/Localization/es-es.cfg -------------------------------------------------------------------------------- /GameData/StarshipLaunchExpansion/Parts/@thumbs/SLE.SS.OLIT.Base_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/GameData/StarshipLaunchExpansion/Parts/@thumbs/SLE.SS.OLIT.Base_icon.png -------------------------------------------------------------------------------- /GameData/StarshipLaunchExpansion/Parts/@thumbs/SLE.SS.OLIT.Core_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/GameData/StarshipLaunchExpansion/Parts/@thumbs/SLE.SS.OLIT.Core_icon.png -------------------------------------------------------------------------------- /GameData/StarshipLaunchExpansion/Parts/@thumbs/SLE.SS.OLIT.MZ_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/GameData/StarshipLaunchExpansion/Parts/@thumbs/SLE.SS.OLIT.MZ_icon.png -------------------------------------------------------------------------------- /GameData/StarshipLaunchExpansion/Parts/@thumbs/SLE.SS.OLIT.Top_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/GameData/StarshipLaunchExpansion/Parts/@thumbs/SLE.SS.OLIT.Top_icon.png -------------------------------------------------------------------------------- /GameData/StarshipLaunchExpansion/Parts/@thumbs/SLE.SS.OLP_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/GameData/StarshipLaunchExpansion/Parts/@thumbs/SLE.SS.OLP_icon.png -------------------------------------------------------------------------------- /GameData/StarshipLaunchExpansion/Parts/@thumbs/SLE.SS.TS_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/GameData/StarshipLaunchExpansion/Parts/@thumbs/SLE.SS.TS_icon.png -------------------------------------------------------------------------------- /GameData/StarshipLaunchExpansion/Parts/KKStatics/SLE_KK_GSE.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/GameData/StarshipLaunchExpansion/Parts/KKStatics/SLE_KK_GSE.cfg -------------------------------------------------------------------------------- /GameData/StarshipLaunchExpansion/Parts/KKStatics/SLE_KK_GSE.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/GameData/StarshipLaunchExpansion/Parts/KKStatics/SLE_KK_GSE.dds -------------------------------------------------------------------------------- /GameData/StarshipLaunchExpansion/Parts/KKStatics/SLE_KK_GSE.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/GameData/StarshipLaunchExpansion/Parts/KKStatics/SLE_KK_GSE.mu -------------------------------------------------------------------------------- /GameData/StarshipLaunchExpansion/Parts/KKStatics/SLE_KK_GSE_NRM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/GameData/StarshipLaunchExpansion/Parts/KKStatics/SLE_KK_GSE_NRM.png -------------------------------------------------------------------------------- /GameData/StarshipLaunchExpansion/Parts/KKStatics/SLE_KK_SB_Text.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/GameData/StarshipLaunchExpansion/Parts/KKStatics/SLE_KK_SB_Text.cfg -------------------------------------------------------------------------------- /GameData/StarshipLaunchExpansion/Parts/KKStatics/SLE_KK_SB_Text.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/GameData/StarshipLaunchExpansion/Parts/KKStatics/SLE_KK_SB_Text.dds -------------------------------------------------------------------------------- /GameData/StarshipLaunchExpansion/Parts/KKStatics/SLE_KK_SB_Text.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/GameData/StarshipLaunchExpansion/Parts/KKStatics/SLE_KK_SB_Text.mu -------------------------------------------------------------------------------- /GameData/StarshipLaunchExpansion/Parts/KKStatics/SLE_KK_SB_Text_EM.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/GameData/StarshipLaunchExpansion/Parts/KKStatics/SLE_KK_SB_Text_EM.dds -------------------------------------------------------------------------------- /GameData/StarshipLaunchExpansion/Parts/SSPads/SLE_SS_DS.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/GameData/StarshipLaunchExpansion/Parts/SSPads/SLE_SS_DS.cfg -------------------------------------------------------------------------------- /GameData/StarshipLaunchExpansion/Parts/SSPads/SLE_SS_OLIT_Base.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/GameData/StarshipLaunchExpansion/Parts/SSPads/SLE_SS_OLIT_Base.cfg -------------------------------------------------------------------------------- /GameData/StarshipLaunchExpansion/Parts/SSPads/SLE_SS_OLIT_Base.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/GameData/StarshipLaunchExpansion/Parts/SSPads/SLE_SS_OLIT_Base.dds -------------------------------------------------------------------------------- /GameData/StarshipLaunchExpansion/Parts/SSPads/SLE_SS_OLIT_Base.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/GameData/StarshipLaunchExpansion/Parts/SSPads/SLE_SS_OLIT_Base.mu -------------------------------------------------------------------------------- /GameData/StarshipLaunchExpansion/Parts/SSPads/SLE_SS_OLIT_Base_Exterior.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/GameData/StarshipLaunchExpansion/Parts/SSPads/SLE_SS_OLIT_Base_Exterior.dds -------------------------------------------------------------------------------- /GameData/StarshipLaunchExpansion/Parts/SSPads/SLE_SS_OLIT_Base_Exterior_NRM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/GameData/StarshipLaunchExpansion/Parts/SSPads/SLE_SS_OLIT_Base_Exterior_NRM.png -------------------------------------------------------------------------------- /GameData/StarshipLaunchExpansion/Parts/SSPads/SLE_SS_OLIT_Base_NRM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/GameData/StarshipLaunchExpansion/Parts/SSPads/SLE_SS_OLIT_Base_NRM.png -------------------------------------------------------------------------------- /GameData/StarshipLaunchExpansion/Parts/SSPads/SLE_SS_OLIT_Core.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/GameData/StarshipLaunchExpansion/Parts/SSPads/SLE_SS_OLIT_Core.cfg -------------------------------------------------------------------------------- /GameData/StarshipLaunchExpansion/Parts/SSPads/SLE_SS_OLIT_Core.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/GameData/StarshipLaunchExpansion/Parts/SSPads/SLE_SS_OLIT_Core.dds -------------------------------------------------------------------------------- /GameData/StarshipLaunchExpansion/Parts/SSPads/SLE_SS_OLIT_Core.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/GameData/StarshipLaunchExpansion/Parts/SSPads/SLE_SS_OLIT_Core.mu -------------------------------------------------------------------------------- /GameData/StarshipLaunchExpansion/Parts/SSPads/SLE_SS_OLIT_Core_NRM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/GameData/StarshipLaunchExpansion/Parts/SSPads/SLE_SS_OLIT_Core_NRM.png -------------------------------------------------------------------------------- /GameData/StarshipLaunchExpansion/Parts/SSPads/SLE_SS_OLIT_MZ.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/GameData/StarshipLaunchExpansion/Parts/SSPads/SLE_SS_OLIT_MZ.cfg -------------------------------------------------------------------------------- /GameData/StarshipLaunchExpansion/Parts/SSPads/SLE_SS_OLIT_MZ.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/GameData/StarshipLaunchExpansion/Parts/SSPads/SLE_SS_OLIT_MZ.dds -------------------------------------------------------------------------------- /GameData/StarshipLaunchExpansion/Parts/SSPads/SLE_SS_OLIT_MZ.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/GameData/StarshipLaunchExpansion/Parts/SSPads/SLE_SS_OLIT_MZ.mu -------------------------------------------------------------------------------- /GameData/StarshipLaunchExpansion/Parts/SSPads/SLE_SS_OLIT_MZ_Pulley.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/GameData/StarshipLaunchExpansion/Parts/SSPads/SLE_SS_OLIT_MZ_Pulley.dds -------------------------------------------------------------------------------- /GameData/StarshipLaunchExpansion/Parts/SSPads/SLE_SS_OLIT_Top.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/GameData/StarshipLaunchExpansion/Parts/SSPads/SLE_SS_OLIT_Top.cfg -------------------------------------------------------------------------------- /GameData/StarshipLaunchExpansion/Parts/SSPads/SLE_SS_OLIT_Top.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/GameData/StarshipLaunchExpansion/Parts/SSPads/SLE_SS_OLIT_Top.dds -------------------------------------------------------------------------------- /GameData/StarshipLaunchExpansion/Parts/SSPads/SLE_SS_OLIT_Top.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/GameData/StarshipLaunchExpansion/Parts/SSPads/SLE_SS_OLIT_Top.mu -------------------------------------------------------------------------------- /GameData/StarshipLaunchExpansion/Parts/SSPads/SLE_SS_OLP.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/GameData/StarshipLaunchExpansion/Parts/SSPads/SLE_SS_OLP.cfg -------------------------------------------------------------------------------- /GameData/StarshipLaunchExpansion/Parts/SSPads/SLE_SS_OLP.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/GameData/StarshipLaunchExpansion/Parts/SSPads/SLE_SS_OLP.mu -------------------------------------------------------------------------------- /GameData/StarshipLaunchExpansion/Parts/SSPads/SLE_SS_Statics.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/GameData/StarshipLaunchExpansion/Parts/SSPads/SLE_SS_Statics.cfg -------------------------------------------------------------------------------- /GameData/StarshipLaunchExpansion/Parts/SSPads/SLE_SS_TS.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/GameData/StarshipLaunchExpansion/Parts/SSPads/SLE_SS_TS.cfg -------------------------------------------------------------------------------- /GameData/StarshipLaunchExpansion/Parts/SSPads/SLE_SS_TS.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/GameData/StarshipLaunchExpansion/Parts/SSPads/SLE_SS_TS.mu -------------------------------------------------------------------------------- /GameData/StarshipLaunchExpansion/Parts/SSPads/SLE_SS_TS1.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/GameData/StarshipLaunchExpansion/Parts/SSPads/SLE_SS_TS1.dds -------------------------------------------------------------------------------- /GameData/StarshipLaunchExpansion/Parts/SSPads/SLE_SS_TS2.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/GameData/StarshipLaunchExpansion/Parts/SSPads/SLE_SS_TS2.dds -------------------------------------------------------------------------------- /GameData/StarshipLaunchExpansion/Parts/SSPads/SP_OLP.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/GameData/StarshipLaunchExpansion/Parts/SSPads/SP_OLP.dds -------------------------------------------------------------------------------- /GameData/StarshipLaunchExpansion/Patches/CCTanks-Patch.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/GameData/StarshipLaunchExpansion/Patches/CCTanks-Patch.cfg -------------------------------------------------------------------------------- /GameData/StarshipLaunchExpansion/Patches/CustomDragCubes.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/GameData/StarshipLaunchExpansion/Patches/CustomDragCubes.cfg -------------------------------------------------------------------------------- /GameData/StarshipLaunchExpansion/Patches/Extras.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/GameData/StarshipLaunchExpansion/Patches/Extras.cfg -------------------------------------------------------------------------------- /GameData/StarshipLaunchExpansion/Patches/MethaloxFueling.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/GameData/StarshipLaunchExpansion/Patches/MethaloxFueling.cfg -------------------------------------------------------------------------------- /GameData/StarshipLaunchExpansion/Patches/Resources.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/GameData/StarshipLaunchExpansion/Patches/Resources.cfg -------------------------------------------------------------------------------- /GameData/StarshipLaunchExpansion/Patches/TweakScale.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/GameData/StarshipLaunchExpansion/Patches/TweakScale.cfg -------------------------------------------------------------------------------- /GameData/StarshipLaunchExpansion/Plugin/StarshipLaunchExpansion.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/GameData/StarshipLaunchExpansion/Plugin/StarshipLaunchExpansion.dll -------------------------------------------------------------------------------- /GameData/StarshipLaunchExpansion/Versioning/SLEChangelog.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/GameData/StarshipLaunchExpansion/Versioning/SLEChangelog.cfg -------------------------------------------------------------------------------- /GameData/StarshipLaunchExpansion/Versioning/StarshipLaunchExpansion.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/GameData/StarshipLaunchExpansion/Versioning/StarshipLaunchExpansion.version -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/README.md -------------------------------------------------------------------------------- /Source/Modules/ModuleSLEAnimate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/Source/Modules/ModuleSLEAnimate.cs -------------------------------------------------------------------------------- /Source/Modules/ModuleSLEController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/Source/Modules/ModuleSLEController.cs -------------------------------------------------------------------------------- /Source/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/Source/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/StarshipLaunchExpansion.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/Source/StarshipLaunchExpansion.csproj -------------------------------------------------------------------------------- /Source/StarshipLaunchExpansion.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAMCG14/StarshipLaunchExpansion/HEAD/Source/StarshipLaunchExpansion.sln --------------------------------------------------------------------------------