├── .editorconfig ├── .gitattributes ├── .gitignore ├── About ├── About.xml ├── Manifest.xml ├── Preview.png ├── PublishedFileId.txt └── dependencies.json ├── Assemblies └── Manager.dll ├── Defs ├── JobDefs │ └── JobDef_ManagingAtManagingStation.xml ├── MainTabDefs │ └── MainTabWindow_Manager.xml ├── ResearchProjectDefs │ ├── ManagerStations_Research.xml │ └── ManagerStations_Tabs.xml ├── StatDefs │ └── Stat_ManagingSpeed.xml ├── ThingDefs │ └── Buildings_ManagerStation.xml ├── WorkGiverDefs │ └── WorkGiver_Managing.xml └── WorkTypeDefs │ └── WorkType_Managing.xml ├── LICENSE ├── Languages ├── ChineseSimplified │ ├── DefInjected │ │ ├── JobDef │ │ │ └── JobDef_ManagingAtManagingStation.xml │ │ ├── MainButtonDef │ │ │ └── MainTabWindow_Manager.xml │ │ ├── ResearchProjectDef │ │ │ └── ManagerStations_Research.xml │ │ ├── StatDef │ │ │ └── Stat_ManagingSpeed.xml │ │ ├── ThingDef │ │ │ └── Buildings_ManagerStation.xml │ │ ├── WorkGiverDef │ │ │ └── WorkGiver_Managing.xml │ │ └── WorkTypeDef │ │ │ └── WorkType_Managing.xml │ └── Keyed │ │ └── Manager_Keyed.xml ├── ChineseTraditional │ ├── DefInjected │ │ ├── JobDef │ │ │ └── JobDef_ManagingAtManagingStation.xml │ │ ├── MainButtonDef │ │ │ └── MainTabWindow_Manager.xml │ │ ├── ResearchProjectDef │ │ │ └── ManagerStations_Research.xml │ │ ├── StatDef │ │ │ └── Stat_ManagingSpeed.xml │ │ ├── ThingDef │ │ │ └── Buildings_ManagerStation.xml │ │ ├── WorkGiverDef │ │ │ └── WorkGiver_Managing.xml │ │ └── WorkTypeDef │ │ │ └── WorkType_Managing.xml │ └── Keyed │ │ └── Manager_Keyed.xml ├── English │ └── Keyed │ │ ├── Manager_Keyed.xml │ │ └── Mining.xml ├── French │ ├── DefInjected │ │ ├── JobDef │ │ │ └── JobDef_ManagingAtManagingStation.xml │ │ ├── MainButtonDef │ │ │ └── MainTabWindow_Manager.xml │ │ ├── MainTabDef │ │ │ └── MainTabWindow_Manager.xml │ │ ├── ResearchProjectDef │ │ │ └── ManagerStations_Research.xml │ │ ├── SkillDef │ │ │ └── Skill_Managing.xml │ │ ├── StatDef │ │ │ └── Stat_ManagingSpeed.xml │ │ ├── ThingDef │ │ │ └── Buildings_ManagerStation.xml │ │ ├── WorkGiverDef │ │ │ └── WorkGiver_Managing.xml │ │ └── WorkTypeDef │ │ │ └── WorkType_Managing.xml │ └── Keyed │ │ ├── Manager_Keyed.xml │ │ └── Mining.xml ├── German │ ├── DefInjected │ │ ├── JobDef │ │ │ └── JobDef_ManagingAtManagingStation.xml │ │ ├── MainButtonDef │ │ │ └── MainTabWindow_Manager.xml │ │ ├── ResearchProjectDef │ │ │ └── ManagerStations_Research.xml │ │ ├── StatDef │ │ │ └── Stat_ManagingSpeed.xml │ │ ├── ThingDef │ │ │ └── Buildings_ManagerStation.xml │ │ ├── WorkGiverDef │ │ │ └── WorkGiver_Managing.xml │ │ └── WorkTypeDef │ │ │ └── WorkType_Managing.xml │ ├── Keyed │ │ ├── Manager_Keyed.xml │ │ └── Mining.xml │ └── LanguageInfo.xml ├── Korean │ ├── DefInjected │ │ ├── JobDef │ │ │ └── JobDef_ManagingAtManagingStation.xml │ │ ├── MainButtonDef │ │ │ └── MainTabWindow_Manager.xml │ │ ├── ResearchProjectDef │ │ │ └── ManagerStations_Research.xml │ │ ├── StatDef │ │ │ └── Stat_ManagingSpeed.xml │ │ ├── ThingDef │ │ │ └── Buildings_ManagerStation.xml │ │ ├── WorkGiverDef │ │ │ └── WorkGiver_Managing.xml │ │ └── WorkTypeDef │ │ │ └── WorkType_Managing.xml │ └── Keyed │ │ ├── Manager_Keyed.xml │ │ └── Mining.xml ├── PortugueseBrazilian │ ├── DefInjected │ │ ├── JobDef │ │ │ └── JobDef_ManagingAtManagingStation.xml │ │ ├── MainButtonDef │ │ │ └── MainTabWindow_Manager.xml │ │ ├── ResearchProjectDef │ │ │ └── ManagerStations_Research.xml │ │ ├── StatDef │ │ │ └── Stat_ManagingSpeed.xml │ │ ├── ThingDef │ │ │ └── Buildings_ManagerStation.xml │ │ ├── WorkGiverDef │ │ │ └── WorkGiver_Managing.xml │ │ └── WorkTypeDef │ │ │ └── WorkType_Managing.xml │ └── Keyed │ │ ├── Manager_Keyed.xml │ │ └── Mining.xml └── Russian │ ├── DefInjected │ ├── JobDef │ │ └── JobDef_ManagingAtManagingStation.xml │ ├── MainButtonDef │ │ └── MainTabWindow_Manager.xml │ ├── MainTabDef │ │ └── MainTabWindow_Manager.xml │ ├── ResearchProjectDef │ │ └── ManagerStations_Research.xml │ ├── SkillDef │ │ └── Skill_Managing.xml │ ├── StatDef │ │ └── Stat_ManagingSpeed.xml │ ├── ThingDef │ │ └── Buildings_ManagerStation.xml │ ├── WorkGiverDef │ │ └── WorkGiver_Managing.xml │ └── WorkTypeDef │ │ └── WorkType_Managing.xml │ └── Keyed │ ├── Manager_Keyed.xml │ └── Mining.xml ├── Readme.md ├── Source ├── Comps │ ├── CompProperties_ManagerStation.cs │ └── Comp_ManagerStation.cs ├── Core │ ├── Alerts.cs │ ├── Controller.cs │ ├── JobStack.cs │ ├── Manager.cs │ └── Settings.cs ├── GetBuildingCost.cs ├── Helpers │ ├── Calendar.cs │ ├── Clock.cs │ ├── Color │ │ └── HSV_Helper.cs │ ├── Constants.cs │ ├── Extensions │ │ ├── CompGlower_Extensions.cs │ │ ├── Rect_Extensions.cs │ │ └── String_Extensions.cs │ ├── History.cs │ ├── Hunting │ │ └── Utilities_Hunting.cs │ ├── I18n.cs │ ├── Livestock │ │ └── Utilities_Livestock.cs │ ├── Logger.cs │ ├── Mining │ │ ├── Dialog_MiningDebugOptions.cs │ │ └── Utilities_Mining.cs │ ├── Production │ │ ├── BillGiverTracker.cs │ │ ├── Dialog_CreateJobsForIngredients.cs │ │ ├── MainProductTracker.cs │ │ └── Utilities_Production.cs │ ├── Research │ │ └── ResearchWorkers.cs │ ├── Resources.cs │ ├── Triplet.cs │ ├── UI │ │ ├── AreaAllowedGUI.cs │ │ ├── StockpileGUI.cs │ │ ├── UIThingFilterSearchable.cs │ │ ├── Widgets_Labels.cs │ │ └── Widgets_Section.cs │ ├── UpdateInterval.cs │ └── Utilities.cs ├── JobDrivers │ └── JobDriver_ManagingAtManagingStation.cs ├── MainTabWindow │ └── MainTabWindow_Manager.cs ├── Manager.csproj ├── Manager.sln ├── Manager.sln.DotSettings.user ├── ManagerJobs │ ├── ManagerJob.cs │ ├── ManagerJob_Foraging.cs │ ├── ManagerJob_Forestry.cs │ ├── ManagerJob_Hunting.cs │ ├── ManagerJob_Livestock.cs │ ├── ManagerJob_Mining.cs │ ├── ManagerJob_Production.cs │ └── ManagerJob_Trading.cs ├── ManagerTabs │ ├── ManagerTab.cs │ ├── ManagerTab_Foraging.cs │ ├── ManagerTab_Forestry.cs │ ├── ManagerTab_Hunting.cs │ ├── ManagerTab_ImportExport.cs │ ├── ManagerTab_Livestock.cs │ ├── ManagerTab_Mining.cs │ ├── ManagerTab_Overview.cs │ ├── ManagerTab_Power.cs │ ├── ManagerTab_Production.cs │ └── ManagerTab_Trading.cs ├── Things │ └── Building_ManagerStation.cs ├── Triggers │ ├── Trigger.cs │ ├── Trigger_PawnKind.cs │ └── Trigger_Threshold.cs ├── Windows │ ├── Window_BillGiverDetails.cs │ └── Window_TriggerThresholdDetails.cs ├── WorkGivers │ └── WorkGiver_Manager.cs ├── description.md └── preview.svg ├── Textures ├── Buildings │ ├── AI_ManagerStation_east.png │ ├── AI_ManagerStation_eastm.png │ ├── AI_ManagerStation_north.png │ ├── AI_ManagerStation_northm.png │ ├── AI_ManagerStation_south.png │ ├── AI_ManagerStation_southm.png │ ├── BasicManagerStation_east.png │ ├── BasicManagerStation_eastm.png │ ├── BasicManagerStation_north.png │ ├── BasicManagerStation_northm.png │ ├── BasicManagerStation_south.png │ ├── BasicManagerStation_southm.png │ ├── ManagerStation_east.png │ ├── ManagerStation_eastm.png │ ├── ManagerStation_front.png │ ├── ManagerStation_north.png │ ├── ManagerStation_northm.png │ ├── ManagerStation_south.png │ └── ManagerStation_southm.png └── UI │ ├── Buttons │ ├── ArrowBottom.png │ ├── ArrowDown.png │ ├── ArrowTop.png │ ├── ArrowUp.png │ ├── Cog.png │ ├── Cogs.png │ └── Search.png │ ├── Icons │ ├── Foraging.png │ ├── Hammer.png │ ├── Hunting.png │ ├── ImportExport.png │ ├── Livestock.png │ ├── Overview.png │ ├── Power.png │ ├── Tree.png │ ├── claw.png │ ├── female.png │ ├── male.png │ ├── meat.png │ ├── milk.png │ ├── mining.png │ ├── refresh.png │ ├── stage-1.png │ ├── stage-2.png │ ├── stage-3.png │ ├── stopwatch.png │ ├── unknown.png │ └── wool.png │ ├── Misc │ └── BarShader.png │ └── Stamps │ ├── Completed.png │ ├── Start.png │ └── Suspended.png └── modinfo.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/.gitignore -------------------------------------------------------------------------------- /About/About.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/About/About.xml -------------------------------------------------------------------------------- /About/Manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/About/Manifest.xml -------------------------------------------------------------------------------- /About/Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/About/Preview.png -------------------------------------------------------------------------------- /About/PublishedFileId.txt: -------------------------------------------------------------------------------- 1 | 715565262 -------------------------------------------------------------------------------- /About/dependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/About/dependencies.json -------------------------------------------------------------------------------- /Assemblies/Manager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Assemblies/Manager.dll -------------------------------------------------------------------------------- /Defs/JobDefs/JobDef_ManagingAtManagingStation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Defs/JobDefs/JobDef_ManagingAtManagingStation.xml -------------------------------------------------------------------------------- /Defs/MainTabDefs/MainTabWindow_Manager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Defs/MainTabDefs/MainTabWindow_Manager.xml -------------------------------------------------------------------------------- /Defs/ResearchProjectDefs/ManagerStations_Research.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Defs/ResearchProjectDefs/ManagerStations_Research.xml -------------------------------------------------------------------------------- /Defs/ResearchProjectDefs/ManagerStations_Tabs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Defs/ResearchProjectDefs/ManagerStations_Tabs.xml -------------------------------------------------------------------------------- /Defs/StatDefs/Stat_ManagingSpeed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Defs/StatDefs/Stat_ManagingSpeed.xml -------------------------------------------------------------------------------- /Defs/ThingDefs/Buildings_ManagerStation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Defs/ThingDefs/Buildings_ManagerStation.xml -------------------------------------------------------------------------------- /Defs/WorkGiverDefs/WorkGiver_Managing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Defs/WorkGiverDefs/WorkGiver_Managing.xml -------------------------------------------------------------------------------- /Defs/WorkTypeDefs/WorkType_Managing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Defs/WorkTypeDefs/WorkType_Managing.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/LICENSE -------------------------------------------------------------------------------- /Languages/ChineseSimplified/DefInjected/JobDef/JobDef_ManagingAtManagingStation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/ChineseSimplified/DefInjected/JobDef/JobDef_ManagingAtManagingStation.xml -------------------------------------------------------------------------------- /Languages/ChineseSimplified/DefInjected/MainButtonDef/MainTabWindow_Manager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/ChineseSimplified/DefInjected/MainButtonDef/MainTabWindow_Manager.xml -------------------------------------------------------------------------------- /Languages/ChineseSimplified/DefInjected/ResearchProjectDef/ManagerStations_Research.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/ChineseSimplified/DefInjected/ResearchProjectDef/ManagerStations_Research.xml -------------------------------------------------------------------------------- /Languages/ChineseSimplified/DefInjected/StatDef/Stat_ManagingSpeed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/ChineseSimplified/DefInjected/StatDef/Stat_ManagingSpeed.xml -------------------------------------------------------------------------------- /Languages/ChineseSimplified/DefInjected/ThingDef/Buildings_ManagerStation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/ChineseSimplified/DefInjected/ThingDef/Buildings_ManagerStation.xml -------------------------------------------------------------------------------- /Languages/ChineseSimplified/DefInjected/WorkGiverDef/WorkGiver_Managing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/ChineseSimplified/DefInjected/WorkGiverDef/WorkGiver_Managing.xml -------------------------------------------------------------------------------- /Languages/ChineseSimplified/DefInjected/WorkTypeDef/WorkType_Managing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/ChineseSimplified/DefInjected/WorkTypeDef/WorkType_Managing.xml -------------------------------------------------------------------------------- /Languages/ChineseSimplified/Keyed/Manager_Keyed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/ChineseSimplified/Keyed/Manager_Keyed.xml -------------------------------------------------------------------------------- /Languages/ChineseTraditional/DefInjected/JobDef/JobDef_ManagingAtManagingStation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/ChineseTraditional/DefInjected/JobDef/JobDef_ManagingAtManagingStation.xml -------------------------------------------------------------------------------- /Languages/ChineseTraditional/DefInjected/MainButtonDef/MainTabWindow_Manager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/ChineseTraditional/DefInjected/MainButtonDef/MainTabWindow_Manager.xml -------------------------------------------------------------------------------- /Languages/ChineseTraditional/DefInjected/ResearchProjectDef/ManagerStations_Research.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/ChineseTraditional/DefInjected/ResearchProjectDef/ManagerStations_Research.xml -------------------------------------------------------------------------------- /Languages/ChineseTraditional/DefInjected/StatDef/Stat_ManagingSpeed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/ChineseTraditional/DefInjected/StatDef/Stat_ManagingSpeed.xml -------------------------------------------------------------------------------- /Languages/ChineseTraditional/DefInjected/ThingDef/Buildings_ManagerStation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/ChineseTraditional/DefInjected/ThingDef/Buildings_ManagerStation.xml -------------------------------------------------------------------------------- /Languages/ChineseTraditional/DefInjected/WorkGiverDef/WorkGiver_Managing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/ChineseTraditional/DefInjected/WorkGiverDef/WorkGiver_Managing.xml -------------------------------------------------------------------------------- /Languages/ChineseTraditional/DefInjected/WorkTypeDef/WorkType_Managing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/ChineseTraditional/DefInjected/WorkTypeDef/WorkType_Managing.xml -------------------------------------------------------------------------------- /Languages/ChineseTraditional/Keyed/Manager_Keyed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/ChineseTraditional/Keyed/Manager_Keyed.xml -------------------------------------------------------------------------------- /Languages/English/Keyed/Manager_Keyed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/English/Keyed/Manager_Keyed.xml -------------------------------------------------------------------------------- /Languages/English/Keyed/Mining.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/English/Keyed/Mining.xml -------------------------------------------------------------------------------- /Languages/French/DefInjected/JobDef/JobDef_ManagingAtManagingStation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/French/DefInjected/JobDef/JobDef_ManagingAtManagingStation.xml -------------------------------------------------------------------------------- /Languages/French/DefInjected/MainButtonDef/MainTabWindow_Manager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/French/DefInjected/MainButtonDef/MainTabWindow_Manager.xml -------------------------------------------------------------------------------- /Languages/French/DefInjected/MainTabDef/MainTabWindow_Manager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/French/DefInjected/MainTabDef/MainTabWindow_Manager.xml -------------------------------------------------------------------------------- /Languages/French/DefInjected/ResearchProjectDef/ManagerStations_Research.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/French/DefInjected/ResearchProjectDef/ManagerStations_Research.xml -------------------------------------------------------------------------------- /Languages/French/DefInjected/SkillDef/Skill_Managing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/French/DefInjected/SkillDef/Skill_Managing.xml -------------------------------------------------------------------------------- /Languages/French/DefInjected/StatDef/Stat_ManagingSpeed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/French/DefInjected/StatDef/Stat_ManagingSpeed.xml -------------------------------------------------------------------------------- /Languages/French/DefInjected/ThingDef/Buildings_ManagerStation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/French/DefInjected/ThingDef/Buildings_ManagerStation.xml -------------------------------------------------------------------------------- /Languages/French/DefInjected/WorkGiverDef/WorkGiver_Managing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/French/DefInjected/WorkGiverDef/WorkGiver_Managing.xml -------------------------------------------------------------------------------- /Languages/French/DefInjected/WorkTypeDef/WorkType_Managing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/French/DefInjected/WorkTypeDef/WorkType_Managing.xml -------------------------------------------------------------------------------- /Languages/French/Keyed/Manager_Keyed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/French/Keyed/Manager_Keyed.xml -------------------------------------------------------------------------------- /Languages/French/Keyed/Mining.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/French/Keyed/Mining.xml -------------------------------------------------------------------------------- /Languages/German/DefInjected/JobDef/JobDef_ManagingAtManagingStation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/German/DefInjected/JobDef/JobDef_ManagingAtManagingStation.xml -------------------------------------------------------------------------------- /Languages/German/DefInjected/MainButtonDef/MainTabWindow_Manager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/German/DefInjected/MainButtonDef/MainTabWindow_Manager.xml -------------------------------------------------------------------------------- /Languages/German/DefInjected/ResearchProjectDef/ManagerStations_Research.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/German/DefInjected/ResearchProjectDef/ManagerStations_Research.xml -------------------------------------------------------------------------------- /Languages/German/DefInjected/StatDef/Stat_ManagingSpeed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/German/DefInjected/StatDef/Stat_ManagingSpeed.xml -------------------------------------------------------------------------------- /Languages/German/DefInjected/ThingDef/Buildings_ManagerStation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/German/DefInjected/ThingDef/Buildings_ManagerStation.xml -------------------------------------------------------------------------------- /Languages/German/DefInjected/WorkGiverDef/WorkGiver_Managing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/German/DefInjected/WorkGiverDef/WorkGiver_Managing.xml -------------------------------------------------------------------------------- /Languages/German/DefInjected/WorkTypeDef/WorkType_Managing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/German/DefInjected/WorkTypeDef/WorkType_Managing.xml -------------------------------------------------------------------------------- /Languages/German/Keyed/Manager_Keyed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/German/Keyed/Manager_Keyed.xml -------------------------------------------------------------------------------- /Languages/German/Keyed/Mining.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/German/Keyed/Mining.xml -------------------------------------------------------------------------------- /Languages/German/LanguageInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/German/LanguageInfo.xml -------------------------------------------------------------------------------- /Languages/Korean/DefInjected/JobDef/JobDef_ManagingAtManagingStation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/Korean/DefInjected/JobDef/JobDef_ManagingAtManagingStation.xml -------------------------------------------------------------------------------- /Languages/Korean/DefInjected/MainButtonDef/MainTabWindow_Manager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/Korean/DefInjected/MainButtonDef/MainTabWindow_Manager.xml -------------------------------------------------------------------------------- /Languages/Korean/DefInjected/ResearchProjectDef/ManagerStations_Research.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/Korean/DefInjected/ResearchProjectDef/ManagerStations_Research.xml -------------------------------------------------------------------------------- /Languages/Korean/DefInjected/StatDef/Stat_ManagingSpeed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/Korean/DefInjected/StatDef/Stat_ManagingSpeed.xml -------------------------------------------------------------------------------- /Languages/Korean/DefInjected/ThingDef/Buildings_ManagerStation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/Korean/DefInjected/ThingDef/Buildings_ManagerStation.xml -------------------------------------------------------------------------------- /Languages/Korean/DefInjected/WorkGiverDef/WorkGiver_Managing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/Korean/DefInjected/WorkGiverDef/WorkGiver_Managing.xml -------------------------------------------------------------------------------- /Languages/Korean/DefInjected/WorkTypeDef/WorkType_Managing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/Korean/DefInjected/WorkTypeDef/WorkType_Managing.xml -------------------------------------------------------------------------------- /Languages/Korean/Keyed/Manager_Keyed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/Korean/Keyed/Manager_Keyed.xml -------------------------------------------------------------------------------- /Languages/Korean/Keyed/Mining.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/Korean/Keyed/Mining.xml -------------------------------------------------------------------------------- /Languages/PortugueseBrazilian/DefInjected/JobDef/JobDef_ManagingAtManagingStation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/PortugueseBrazilian/DefInjected/JobDef/JobDef_ManagingAtManagingStation.xml -------------------------------------------------------------------------------- /Languages/PortugueseBrazilian/DefInjected/MainButtonDef/MainTabWindow_Manager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/PortugueseBrazilian/DefInjected/MainButtonDef/MainTabWindow_Manager.xml -------------------------------------------------------------------------------- /Languages/PortugueseBrazilian/DefInjected/ResearchProjectDef/ManagerStations_Research.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/PortugueseBrazilian/DefInjected/ResearchProjectDef/ManagerStations_Research.xml -------------------------------------------------------------------------------- /Languages/PortugueseBrazilian/DefInjected/StatDef/Stat_ManagingSpeed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/PortugueseBrazilian/DefInjected/StatDef/Stat_ManagingSpeed.xml -------------------------------------------------------------------------------- /Languages/PortugueseBrazilian/DefInjected/ThingDef/Buildings_ManagerStation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/PortugueseBrazilian/DefInjected/ThingDef/Buildings_ManagerStation.xml -------------------------------------------------------------------------------- /Languages/PortugueseBrazilian/DefInjected/WorkGiverDef/WorkGiver_Managing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/PortugueseBrazilian/DefInjected/WorkGiverDef/WorkGiver_Managing.xml -------------------------------------------------------------------------------- /Languages/PortugueseBrazilian/DefInjected/WorkTypeDef/WorkType_Managing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/PortugueseBrazilian/DefInjected/WorkTypeDef/WorkType_Managing.xml -------------------------------------------------------------------------------- /Languages/PortugueseBrazilian/Keyed/Manager_Keyed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/PortugueseBrazilian/Keyed/Manager_Keyed.xml -------------------------------------------------------------------------------- /Languages/PortugueseBrazilian/Keyed/Mining.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/PortugueseBrazilian/Keyed/Mining.xml -------------------------------------------------------------------------------- /Languages/Russian/DefInjected/JobDef/JobDef_ManagingAtManagingStation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/Russian/DefInjected/JobDef/JobDef_ManagingAtManagingStation.xml -------------------------------------------------------------------------------- /Languages/Russian/DefInjected/MainButtonDef/MainTabWindow_Manager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/Russian/DefInjected/MainButtonDef/MainTabWindow_Manager.xml -------------------------------------------------------------------------------- /Languages/Russian/DefInjected/MainTabDef/MainTabWindow_Manager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/Russian/DefInjected/MainTabDef/MainTabWindow_Manager.xml -------------------------------------------------------------------------------- /Languages/Russian/DefInjected/ResearchProjectDef/ManagerStations_Research.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/Russian/DefInjected/ResearchProjectDef/ManagerStations_Research.xml -------------------------------------------------------------------------------- /Languages/Russian/DefInjected/SkillDef/Skill_Managing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/Russian/DefInjected/SkillDef/Skill_Managing.xml -------------------------------------------------------------------------------- /Languages/Russian/DefInjected/StatDef/Stat_ManagingSpeed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/Russian/DefInjected/StatDef/Stat_ManagingSpeed.xml -------------------------------------------------------------------------------- /Languages/Russian/DefInjected/ThingDef/Buildings_ManagerStation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/Russian/DefInjected/ThingDef/Buildings_ManagerStation.xml -------------------------------------------------------------------------------- /Languages/Russian/DefInjected/WorkGiverDef/WorkGiver_Managing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/Russian/DefInjected/WorkGiverDef/WorkGiver_Managing.xml -------------------------------------------------------------------------------- /Languages/Russian/DefInjected/WorkTypeDef/WorkType_Managing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/Russian/DefInjected/WorkTypeDef/WorkType_Managing.xml -------------------------------------------------------------------------------- /Languages/Russian/Keyed/Manager_Keyed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/Russian/Keyed/Manager_Keyed.xml -------------------------------------------------------------------------------- /Languages/Russian/Keyed/Mining.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Languages/Russian/Keyed/Mining.xml -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Readme.md -------------------------------------------------------------------------------- /Source/Comps/CompProperties_ManagerStation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/Comps/CompProperties_ManagerStation.cs -------------------------------------------------------------------------------- /Source/Comps/Comp_ManagerStation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/Comps/Comp_ManagerStation.cs -------------------------------------------------------------------------------- /Source/Core/Alerts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/Core/Alerts.cs -------------------------------------------------------------------------------- /Source/Core/Controller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/Core/Controller.cs -------------------------------------------------------------------------------- /Source/Core/JobStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/Core/JobStack.cs -------------------------------------------------------------------------------- /Source/Core/Manager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/Core/Manager.cs -------------------------------------------------------------------------------- /Source/Core/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/Core/Settings.cs -------------------------------------------------------------------------------- /Source/GetBuildingCost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/GetBuildingCost.cs -------------------------------------------------------------------------------- /Source/Helpers/Calendar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/Helpers/Calendar.cs -------------------------------------------------------------------------------- /Source/Helpers/Clock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/Helpers/Clock.cs -------------------------------------------------------------------------------- /Source/Helpers/Color/HSV_Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/Helpers/Color/HSV_Helper.cs -------------------------------------------------------------------------------- /Source/Helpers/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/Helpers/Constants.cs -------------------------------------------------------------------------------- /Source/Helpers/Extensions/CompGlower_Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/Helpers/Extensions/CompGlower_Extensions.cs -------------------------------------------------------------------------------- /Source/Helpers/Extensions/Rect_Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/Helpers/Extensions/Rect_Extensions.cs -------------------------------------------------------------------------------- /Source/Helpers/Extensions/String_Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/Helpers/Extensions/String_Extensions.cs -------------------------------------------------------------------------------- /Source/Helpers/History.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/Helpers/History.cs -------------------------------------------------------------------------------- /Source/Helpers/Hunting/Utilities_Hunting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/Helpers/Hunting/Utilities_Hunting.cs -------------------------------------------------------------------------------- /Source/Helpers/I18n.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/Helpers/I18n.cs -------------------------------------------------------------------------------- /Source/Helpers/Livestock/Utilities_Livestock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/Helpers/Livestock/Utilities_Livestock.cs -------------------------------------------------------------------------------- /Source/Helpers/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/Helpers/Logger.cs -------------------------------------------------------------------------------- /Source/Helpers/Mining/Dialog_MiningDebugOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/Helpers/Mining/Dialog_MiningDebugOptions.cs -------------------------------------------------------------------------------- /Source/Helpers/Mining/Utilities_Mining.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/Helpers/Mining/Utilities_Mining.cs -------------------------------------------------------------------------------- /Source/Helpers/Production/BillGiverTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/Helpers/Production/BillGiverTracker.cs -------------------------------------------------------------------------------- /Source/Helpers/Production/Dialog_CreateJobsForIngredients.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/Helpers/Production/Dialog_CreateJobsForIngredients.cs -------------------------------------------------------------------------------- /Source/Helpers/Production/MainProductTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/Helpers/Production/MainProductTracker.cs -------------------------------------------------------------------------------- /Source/Helpers/Production/Utilities_Production.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/Helpers/Production/Utilities_Production.cs -------------------------------------------------------------------------------- /Source/Helpers/Research/ResearchWorkers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/Helpers/Research/ResearchWorkers.cs -------------------------------------------------------------------------------- /Source/Helpers/Resources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/Helpers/Resources.cs -------------------------------------------------------------------------------- /Source/Helpers/Triplet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/Helpers/Triplet.cs -------------------------------------------------------------------------------- /Source/Helpers/UI/AreaAllowedGUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/Helpers/UI/AreaAllowedGUI.cs -------------------------------------------------------------------------------- /Source/Helpers/UI/StockpileGUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/Helpers/UI/StockpileGUI.cs -------------------------------------------------------------------------------- /Source/Helpers/UI/UIThingFilterSearchable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/Helpers/UI/UIThingFilterSearchable.cs -------------------------------------------------------------------------------- /Source/Helpers/UI/Widgets_Labels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/Helpers/UI/Widgets_Labels.cs -------------------------------------------------------------------------------- /Source/Helpers/UI/Widgets_Section.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/Helpers/UI/Widgets_Section.cs -------------------------------------------------------------------------------- /Source/Helpers/UpdateInterval.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/Helpers/UpdateInterval.cs -------------------------------------------------------------------------------- /Source/Helpers/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/Helpers/Utilities.cs -------------------------------------------------------------------------------- /Source/JobDrivers/JobDriver_ManagingAtManagingStation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/JobDrivers/JobDriver_ManagingAtManagingStation.cs -------------------------------------------------------------------------------- /Source/MainTabWindow/MainTabWindow_Manager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/MainTabWindow/MainTabWindow_Manager.cs -------------------------------------------------------------------------------- /Source/Manager.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/Manager.csproj -------------------------------------------------------------------------------- /Source/Manager.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/Manager.sln -------------------------------------------------------------------------------- /Source/Manager.sln.DotSettings.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/Manager.sln.DotSettings.user -------------------------------------------------------------------------------- /Source/ManagerJobs/ManagerJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/ManagerJobs/ManagerJob.cs -------------------------------------------------------------------------------- /Source/ManagerJobs/ManagerJob_Foraging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/ManagerJobs/ManagerJob_Foraging.cs -------------------------------------------------------------------------------- /Source/ManagerJobs/ManagerJob_Forestry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/ManagerJobs/ManagerJob_Forestry.cs -------------------------------------------------------------------------------- /Source/ManagerJobs/ManagerJob_Hunting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/ManagerJobs/ManagerJob_Hunting.cs -------------------------------------------------------------------------------- /Source/ManagerJobs/ManagerJob_Livestock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/ManagerJobs/ManagerJob_Livestock.cs -------------------------------------------------------------------------------- /Source/ManagerJobs/ManagerJob_Mining.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/ManagerJobs/ManagerJob_Mining.cs -------------------------------------------------------------------------------- /Source/ManagerJobs/ManagerJob_Production.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/ManagerJobs/ManagerJob_Production.cs -------------------------------------------------------------------------------- /Source/ManagerJobs/ManagerJob_Trading.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/ManagerJobs/ManagerJob_Trading.cs -------------------------------------------------------------------------------- /Source/ManagerTabs/ManagerTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/ManagerTabs/ManagerTab.cs -------------------------------------------------------------------------------- /Source/ManagerTabs/ManagerTab_Foraging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/ManagerTabs/ManagerTab_Foraging.cs -------------------------------------------------------------------------------- /Source/ManagerTabs/ManagerTab_Forestry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/ManagerTabs/ManagerTab_Forestry.cs -------------------------------------------------------------------------------- /Source/ManagerTabs/ManagerTab_Hunting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/ManagerTabs/ManagerTab_Hunting.cs -------------------------------------------------------------------------------- /Source/ManagerTabs/ManagerTab_ImportExport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/ManagerTabs/ManagerTab_ImportExport.cs -------------------------------------------------------------------------------- /Source/ManagerTabs/ManagerTab_Livestock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/ManagerTabs/ManagerTab_Livestock.cs -------------------------------------------------------------------------------- /Source/ManagerTabs/ManagerTab_Mining.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/ManagerTabs/ManagerTab_Mining.cs -------------------------------------------------------------------------------- /Source/ManagerTabs/ManagerTab_Overview.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/ManagerTabs/ManagerTab_Overview.cs -------------------------------------------------------------------------------- /Source/ManagerTabs/ManagerTab_Power.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/ManagerTabs/ManagerTab_Power.cs -------------------------------------------------------------------------------- /Source/ManagerTabs/ManagerTab_Production.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/ManagerTabs/ManagerTab_Production.cs -------------------------------------------------------------------------------- /Source/ManagerTabs/ManagerTab_Trading.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/ManagerTabs/ManagerTab_Trading.cs -------------------------------------------------------------------------------- /Source/Things/Building_ManagerStation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/Things/Building_ManagerStation.cs -------------------------------------------------------------------------------- /Source/Triggers/Trigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/Triggers/Trigger.cs -------------------------------------------------------------------------------- /Source/Triggers/Trigger_PawnKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/Triggers/Trigger_PawnKind.cs -------------------------------------------------------------------------------- /Source/Triggers/Trigger_Threshold.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/Triggers/Trigger_Threshold.cs -------------------------------------------------------------------------------- /Source/Windows/Window_BillGiverDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/Windows/Window_BillGiverDetails.cs -------------------------------------------------------------------------------- /Source/Windows/Window_TriggerThresholdDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/Windows/Window_TriggerThresholdDetails.cs -------------------------------------------------------------------------------- /Source/WorkGivers/WorkGiver_Manager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/WorkGivers/WorkGiver_Manager.cs -------------------------------------------------------------------------------- /Source/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/description.md -------------------------------------------------------------------------------- /Source/preview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Source/preview.svg -------------------------------------------------------------------------------- /Textures/Buildings/AI_ManagerStation_east.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Textures/Buildings/AI_ManagerStation_east.png -------------------------------------------------------------------------------- /Textures/Buildings/AI_ManagerStation_eastm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Textures/Buildings/AI_ManagerStation_eastm.png -------------------------------------------------------------------------------- /Textures/Buildings/AI_ManagerStation_north.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Textures/Buildings/AI_ManagerStation_north.png -------------------------------------------------------------------------------- /Textures/Buildings/AI_ManagerStation_northm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Textures/Buildings/AI_ManagerStation_northm.png -------------------------------------------------------------------------------- /Textures/Buildings/AI_ManagerStation_south.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Textures/Buildings/AI_ManagerStation_south.png -------------------------------------------------------------------------------- /Textures/Buildings/AI_ManagerStation_southm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Textures/Buildings/AI_ManagerStation_southm.png -------------------------------------------------------------------------------- /Textures/Buildings/BasicManagerStation_east.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Textures/Buildings/BasicManagerStation_east.png -------------------------------------------------------------------------------- /Textures/Buildings/BasicManagerStation_eastm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Textures/Buildings/BasicManagerStation_eastm.png -------------------------------------------------------------------------------- /Textures/Buildings/BasicManagerStation_north.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Textures/Buildings/BasicManagerStation_north.png -------------------------------------------------------------------------------- /Textures/Buildings/BasicManagerStation_northm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Textures/Buildings/BasicManagerStation_northm.png -------------------------------------------------------------------------------- /Textures/Buildings/BasicManagerStation_south.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Textures/Buildings/BasicManagerStation_south.png -------------------------------------------------------------------------------- /Textures/Buildings/BasicManagerStation_southm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Textures/Buildings/BasicManagerStation_southm.png -------------------------------------------------------------------------------- /Textures/Buildings/ManagerStation_east.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Textures/Buildings/ManagerStation_east.png -------------------------------------------------------------------------------- /Textures/Buildings/ManagerStation_eastm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Textures/Buildings/ManagerStation_eastm.png -------------------------------------------------------------------------------- /Textures/Buildings/ManagerStation_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Textures/Buildings/ManagerStation_front.png -------------------------------------------------------------------------------- /Textures/Buildings/ManagerStation_north.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Textures/Buildings/ManagerStation_north.png -------------------------------------------------------------------------------- /Textures/Buildings/ManagerStation_northm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Textures/Buildings/ManagerStation_northm.png -------------------------------------------------------------------------------- /Textures/Buildings/ManagerStation_south.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Textures/Buildings/ManagerStation_south.png -------------------------------------------------------------------------------- /Textures/Buildings/ManagerStation_southm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Textures/Buildings/ManagerStation_southm.png -------------------------------------------------------------------------------- /Textures/UI/Buttons/ArrowBottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Textures/UI/Buttons/ArrowBottom.png -------------------------------------------------------------------------------- /Textures/UI/Buttons/ArrowDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Textures/UI/Buttons/ArrowDown.png -------------------------------------------------------------------------------- /Textures/UI/Buttons/ArrowTop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Textures/UI/Buttons/ArrowTop.png -------------------------------------------------------------------------------- /Textures/UI/Buttons/ArrowUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Textures/UI/Buttons/ArrowUp.png -------------------------------------------------------------------------------- /Textures/UI/Buttons/Cog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Textures/UI/Buttons/Cog.png -------------------------------------------------------------------------------- /Textures/UI/Buttons/Cogs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Textures/UI/Buttons/Cogs.png -------------------------------------------------------------------------------- /Textures/UI/Buttons/Search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Textures/UI/Buttons/Search.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Foraging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Textures/UI/Icons/Foraging.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Hammer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Textures/UI/Icons/Hammer.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Hunting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Textures/UI/Icons/Hunting.png -------------------------------------------------------------------------------- /Textures/UI/Icons/ImportExport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Textures/UI/Icons/ImportExport.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Livestock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Textures/UI/Icons/Livestock.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Textures/UI/Icons/Overview.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Textures/UI/Icons/Power.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Textures/UI/Icons/Tree.png -------------------------------------------------------------------------------- /Textures/UI/Icons/claw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Textures/UI/Icons/claw.png -------------------------------------------------------------------------------- /Textures/UI/Icons/female.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Textures/UI/Icons/female.png -------------------------------------------------------------------------------- /Textures/UI/Icons/male.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Textures/UI/Icons/male.png -------------------------------------------------------------------------------- /Textures/UI/Icons/meat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Textures/UI/Icons/meat.png -------------------------------------------------------------------------------- /Textures/UI/Icons/milk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Textures/UI/Icons/milk.png -------------------------------------------------------------------------------- /Textures/UI/Icons/mining.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Textures/UI/Icons/mining.png -------------------------------------------------------------------------------- /Textures/UI/Icons/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Textures/UI/Icons/refresh.png -------------------------------------------------------------------------------- /Textures/UI/Icons/stage-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Textures/UI/Icons/stage-1.png -------------------------------------------------------------------------------- /Textures/UI/Icons/stage-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Textures/UI/Icons/stage-2.png -------------------------------------------------------------------------------- /Textures/UI/Icons/stage-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Textures/UI/Icons/stage-3.png -------------------------------------------------------------------------------- /Textures/UI/Icons/stopwatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Textures/UI/Icons/stopwatch.png -------------------------------------------------------------------------------- /Textures/UI/Icons/unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Textures/UI/Icons/unknown.png -------------------------------------------------------------------------------- /Textures/UI/Icons/wool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Textures/UI/Icons/wool.png -------------------------------------------------------------------------------- /Textures/UI/Misc/BarShader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Textures/UI/Misc/BarShader.png -------------------------------------------------------------------------------- /Textures/UI/Stamps/Completed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Textures/UI/Stamps/Completed.png -------------------------------------------------------------------------------- /Textures/UI/Stamps/Start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Textures/UI/Stamps/Start.png -------------------------------------------------------------------------------- /Textures/UI/Stamps/Suspended.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/Textures/UI/Stamps/Suspended.png -------------------------------------------------------------------------------- /modinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/ColonyManager/HEAD/modinfo.json --------------------------------------------------------------------------------