├── Properties └── AssemblyInfo.cs ├── README.md ├── XenoIndustry.csproj ├── XenoIndustry.sln ├── changelog.txt ├── license.txt ├── modResource └── XenoIndustry │ ├── Parts │ ├── LargeCargoHold │ │ ├── LargeCargoHold.cfg │ │ ├── LargeTank.mu │ │ ├── ksp_l_resourceContainer_diff.dds │ │ └── ksp_l_resourceContainer_norm.dds │ ├── RadialCargoHold │ │ ├── RadialCargoHold.cfg │ │ ├── RadialOreTank.mu │ │ └── ksp_r_resourceContainer_psd_2.dds │ └── SmallCargoHold │ │ ├── SmallCargoHold.cfg │ │ ├── SmallTank.mu │ │ ├── ksp_s_resourceContainer_diff.dds │ │ └── ksp_s_resourceContainer_normal.dds │ ├── Resource │ └── icon_clusterio.png │ ├── Resources │ └── ResourcesGeneric.cfg │ ├── config.json │ ├── launchCosts.json │ ├── science.json │ ├── signpost.json │ └── stockPlanets.txt ├── packages.config └── source ├── ClusterioConnector.cs ├── ClusterioUtil.cs ├── JSONUtil.cs ├── ModuleXenoIndustryCargo.cs ├── SimpleJSON.cs ├── XenoIndustryCargo.cs ├── XenoIndustryCore.cs ├── XenoIndustryCoreGameParameters.cs ├── XenoIndustryLaunchCosts.cs ├── XenoIndustryScienceTransfer.cs └── XenoIndustrySignpost.cs /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeacupAngel/XenoIndustry/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeacupAngel/XenoIndustry/HEAD/README.md -------------------------------------------------------------------------------- /XenoIndustry.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeacupAngel/XenoIndustry/HEAD/XenoIndustry.csproj -------------------------------------------------------------------------------- /XenoIndustry.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeacupAngel/XenoIndustry/HEAD/XenoIndustry.sln -------------------------------------------------------------------------------- /changelog.txt: -------------------------------------------------------------------------------- 1 | 0.1.0 2 | - Initial release -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeacupAngel/XenoIndustry/HEAD/license.txt -------------------------------------------------------------------------------- /modResource/XenoIndustry/Parts/LargeCargoHold/LargeCargoHold.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeacupAngel/XenoIndustry/HEAD/modResource/XenoIndustry/Parts/LargeCargoHold/LargeCargoHold.cfg -------------------------------------------------------------------------------- /modResource/XenoIndustry/Parts/LargeCargoHold/LargeTank.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeacupAngel/XenoIndustry/HEAD/modResource/XenoIndustry/Parts/LargeCargoHold/LargeTank.mu -------------------------------------------------------------------------------- /modResource/XenoIndustry/Parts/LargeCargoHold/ksp_l_resourceContainer_diff.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeacupAngel/XenoIndustry/HEAD/modResource/XenoIndustry/Parts/LargeCargoHold/ksp_l_resourceContainer_diff.dds -------------------------------------------------------------------------------- /modResource/XenoIndustry/Parts/LargeCargoHold/ksp_l_resourceContainer_norm.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeacupAngel/XenoIndustry/HEAD/modResource/XenoIndustry/Parts/LargeCargoHold/ksp_l_resourceContainer_norm.dds -------------------------------------------------------------------------------- /modResource/XenoIndustry/Parts/RadialCargoHold/RadialCargoHold.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeacupAngel/XenoIndustry/HEAD/modResource/XenoIndustry/Parts/RadialCargoHold/RadialCargoHold.cfg -------------------------------------------------------------------------------- /modResource/XenoIndustry/Parts/RadialCargoHold/RadialOreTank.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeacupAngel/XenoIndustry/HEAD/modResource/XenoIndustry/Parts/RadialCargoHold/RadialOreTank.mu -------------------------------------------------------------------------------- /modResource/XenoIndustry/Parts/RadialCargoHold/ksp_r_resourceContainer_psd_2.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeacupAngel/XenoIndustry/HEAD/modResource/XenoIndustry/Parts/RadialCargoHold/ksp_r_resourceContainer_psd_2.dds -------------------------------------------------------------------------------- /modResource/XenoIndustry/Parts/SmallCargoHold/SmallCargoHold.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeacupAngel/XenoIndustry/HEAD/modResource/XenoIndustry/Parts/SmallCargoHold/SmallCargoHold.cfg -------------------------------------------------------------------------------- /modResource/XenoIndustry/Parts/SmallCargoHold/SmallTank.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeacupAngel/XenoIndustry/HEAD/modResource/XenoIndustry/Parts/SmallCargoHold/SmallTank.mu -------------------------------------------------------------------------------- /modResource/XenoIndustry/Parts/SmallCargoHold/ksp_s_resourceContainer_diff.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeacupAngel/XenoIndustry/HEAD/modResource/XenoIndustry/Parts/SmallCargoHold/ksp_s_resourceContainer_diff.dds -------------------------------------------------------------------------------- /modResource/XenoIndustry/Parts/SmallCargoHold/ksp_s_resourceContainer_normal.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeacupAngel/XenoIndustry/HEAD/modResource/XenoIndustry/Parts/SmallCargoHold/ksp_s_resourceContainer_normal.dds -------------------------------------------------------------------------------- /modResource/XenoIndustry/Resource/icon_clusterio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeacupAngel/XenoIndustry/HEAD/modResource/XenoIndustry/Resource/icon_clusterio.png -------------------------------------------------------------------------------- /modResource/XenoIndustry/Resources/ResourcesGeneric.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeacupAngel/XenoIndustry/HEAD/modResource/XenoIndustry/Resources/ResourcesGeneric.cfg -------------------------------------------------------------------------------- /modResource/XenoIndustry/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "debug": "true", 3 | } 4 | -------------------------------------------------------------------------------- /modResource/XenoIndustry/launchCosts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeacupAngel/XenoIndustry/HEAD/modResource/XenoIndustry/launchCosts.json -------------------------------------------------------------------------------- /modResource/XenoIndustry/science.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeacupAngel/XenoIndustry/HEAD/modResource/XenoIndustry/science.json -------------------------------------------------------------------------------- /modResource/XenoIndustry/signpost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeacupAngel/XenoIndustry/HEAD/modResource/XenoIndustry/signpost.json -------------------------------------------------------------------------------- /modResource/XenoIndustry/stockPlanets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeacupAngel/XenoIndustry/HEAD/modResource/XenoIndustry/stockPlanets.txt -------------------------------------------------------------------------------- /packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeacupAngel/XenoIndustry/HEAD/packages.config -------------------------------------------------------------------------------- /source/ClusterioConnector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeacupAngel/XenoIndustry/HEAD/source/ClusterioConnector.cs -------------------------------------------------------------------------------- /source/ClusterioUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeacupAngel/XenoIndustry/HEAD/source/ClusterioUtil.cs -------------------------------------------------------------------------------- /source/JSONUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeacupAngel/XenoIndustry/HEAD/source/JSONUtil.cs -------------------------------------------------------------------------------- /source/ModuleXenoIndustryCargo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeacupAngel/XenoIndustry/HEAD/source/ModuleXenoIndustryCargo.cs -------------------------------------------------------------------------------- /source/SimpleJSON.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeacupAngel/XenoIndustry/HEAD/source/SimpleJSON.cs -------------------------------------------------------------------------------- /source/XenoIndustryCargo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeacupAngel/XenoIndustry/HEAD/source/XenoIndustryCargo.cs -------------------------------------------------------------------------------- /source/XenoIndustryCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeacupAngel/XenoIndustry/HEAD/source/XenoIndustryCore.cs -------------------------------------------------------------------------------- /source/XenoIndustryCoreGameParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeacupAngel/XenoIndustry/HEAD/source/XenoIndustryCoreGameParameters.cs -------------------------------------------------------------------------------- /source/XenoIndustryLaunchCosts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeacupAngel/XenoIndustry/HEAD/source/XenoIndustryLaunchCosts.cs -------------------------------------------------------------------------------- /source/XenoIndustryScienceTransfer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeacupAngel/XenoIndustry/HEAD/source/XenoIndustryScienceTransfer.cs -------------------------------------------------------------------------------- /source/XenoIndustrySignpost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeacupAngel/XenoIndustry/HEAD/source/XenoIndustrySignpost.cs --------------------------------------------------------------------------------