├── .gitignore ├── About ├── About.xml ├── Manifest.xml ├── ModSync.xml ├── Preview.png ├── PublishedFileId.txt └── dependencies.json ├── Assemblies ├── 0MultiplayerAPI.dll ├── FluffyUI.dll └── WorkTab.dll ├── Defs └── PawnColumnDefs.xml ├── LICENSE ├── Languages ├── ChineseSimplified │ ├── DefInjected │ │ └── PawnColumnDef │ │ │ └── PawnColumnDefs.xml │ └── Keyed │ │ └── Keyed-English.xml ├── ChineseTraditional │ ├── DefInjected │ │ └── PawnColumnDef │ │ │ └── PawnColumnDefs.xml │ └── Keyed │ │ └── Keyed-English.xml ├── English │ └── Keyed │ │ └── Keyed-English.xml ├── French │ ├── DefInjected │ │ └── PawnColumnDefs.xml │ └── Keyed-French.xml ├── German │ ├── DefInjected │ │ └── PawnColumnDef │ │ │ └── PawnColumnDefs.xml │ ├── Keyed │ │ └── WorkTab-German-Keyed.xml │ └── LanguageInfo.xml ├── Korean │ ├── DefInjected │ │ └── PawnColumnDef │ │ │ └── PawnColumnDefs.xml │ └── Keyed │ │ └── Keyed-English.xml ├── Russian │ ├── DefInjected │ │ └── PawnColumnDef │ │ │ └── PawnColumnDefs.xml │ └── Keyed │ │ └── Keyed-Russian.xml └── Spanish │ ├── DefInjected │ └── PawnColumnDef │ │ └── PawnColumnDefs.xml │ └── Keyed │ └── Keyed-Spanish.xml ├── Readme.md ├── Source ├── Core │ ├── Constants.cs │ ├── Controller.cs │ ├── MapComponent_TimeKeeper.cs │ ├── Resources.cs │ ├── Settings.cs │ └── VanillaWorkSettings.cs ├── Extensions │ ├── Int_Extensions.cs │ ├── Job_Extensions.cs │ ├── Listing_Extensions.cs │ ├── Pawn_Extensions.cs │ ├── String_Extensions.cs │ ├── WorkGiver_Extensions.cs │ └── WorkType_Extensions.cs ├── Favourites │ ├── Dialog_CreateFavourite.cs │ ├── Dialog_EditFavourite.cs │ ├── Dialog_Favourite.cs │ ├── Favourite.cs │ └── FavouriteManager.cs ├── HarmonyPatches │ ├── DefGenerator_GenerateImpliedDefs_PreResolve.cs │ ├── PawnTable │ │ ├── PawnTable_PawnTableOnGUI.cs │ │ └── PawnTable_RecacheIfDirty.cs │ └── Worksettings │ │ ├── Pawn_WorkSettings_CacheWorkGiversInOrder.cs │ │ ├── Pawn_WorkSettings_DisableAll.cs │ │ ├── Pawn_WorkSettings_EnableAndInitialize.cs │ │ ├── Pawn_WorkSettings_GetPriority.cs │ │ └── Pawn_WorkSettings_SetPriority.cs ├── PawnColumns │ ├── IAlternatingColumn.cs │ ├── IExpandableColumn.cs │ ├── PawnColumnDef_WorkGiver.cs │ ├── PawnColumnWorker_CopyPasteDetailedWorkPriorities.cs │ ├── PawnColumnWorker_Favourite.cs │ ├── PawnColumnWorker_Job.cs │ ├── PawnColumnWorker_Mood.cs │ ├── PawnColumnWorker_WorkGiver.cs │ ├── PawnColumnWorker_WorkTabLabel.cs │ └── PawnColumnWorker_WorkType.cs ├── PawnTable │ └── MainTabWindow_WorkTab.cs ├── Priorities │ ├── PawnPriorityTracker.cs │ ├── PriorityManager.cs │ ├── PriorityTracker.cs │ └── WorkPriority.cs ├── Utilities │ ├── DefOf.cs │ ├── DrawUtilities.cs │ ├── InteractionUtilities.cs │ ├── LabelUtilities.cs │ ├── Logger.cs │ └── TimeUtilities.cs ├── WorkTab.csproj ├── WorkTab.sln ├── description.md └── preview.svg ├── Textures └── UI │ └── Icons │ ├── LeftArrow.png │ ├── Mood │ ├── broken.png │ ├── content.png │ ├── discontent.png │ ├── happy.png │ └── unhappy.png │ ├── RightArrow.png │ ├── Various │ ├── 3d-hammer.png │ ├── anvil.png │ ├── art.png │ ├── blood.png │ ├── bow.png │ ├── box.png │ ├── brickwall.png │ ├── briefcase.png │ ├── bullseye.png │ ├── business.png │ ├── chef.png │ ├── chess-pawn.png │ ├── clean.png │ ├── cleaver-knife.png │ ├── clock.png │ ├── cog.png │ ├── combat.png │ ├── dice.png │ ├── drop.png │ ├── eat.png │ ├── extinguish.png │ ├── eye.png │ ├── farming.png │ ├── fist.png │ ├── flower.png │ ├── gardening-rake.png │ ├── gun.png │ ├── ham-leg.png │ ├── hammer.png │ ├── hand.png │ ├── handcuffs.png │ ├── haul.png │ ├── health.png │ ├── hunt.png │ ├── ingots.png │ ├── livestock.png │ ├── mine.png │ ├── money.png │ ├── move.png │ ├── oil-drum.png │ ├── paint-brush.png │ ├── paw-print.png │ ├── pencil.png │ ├── pray.png │ ├── research.png │ ├── reset.png │ ├── rings.png │ ├── saw.png │ ├── science.png │ ├── shepherds-crook.png │ ├── shirt.png │ ├── shovel.png │ ├── sick.png │ ├── sickle.png │ ├── signs.png │ ├── social.png │ ├── spanner.png │ ├── star.png │ ├── suits-clubs.png │ ├── suits-diamonds.png │ ├── suits-hearts.png │ ├── suits-spades.png │ ├── syringe.png │ ├── take.png │ ├── thread-ball.png │ ├── undress.png │ ├── unknown.png │ ├── wear.png │ ├── wood-axe.png │ ├── wrench.png │ └── zzz.png │ ├── checks.png │ ├── clock-scheduler.png │ ├── clock.png │ ├── collapse.png │ ├── edit.png │ ├── expand.png │ ├── half.png │ ├── now.png │ ├── numbers.png │ ├── pin-clock.png │ ├── pin-eye.png │ ├── star-hollow.png │ ├── star.png │ └── whole-day.png └── modinfo.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/.gitignore -------------------------------------------------------------------------------- /About/About.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/About/About.xml -------------------------------------------------------------------------------- /About/Manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/About/Manifest.xml -------------------------------------------------------------------------------- /About/ModSync.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/About/ModSync.xml -------------------------------------------------------------------------------- /About/Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/About/Preview.png -------------------------------------------------------------------------------- /About/PublishedFileId.txt: -------------------------------------------------------------------------------- 1 | 725219116 -------------------------------------------------------------------------------- /About/dependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/About/dependencies.json -------------------------------------------------------------------------------- /Assemblies/0MultiplayerAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Assemblies/0MultiplayerAPI.dll -------------------------------------------------------------------------------- /Assemblies/FluffyUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Assemblies/FluffyUI.dll -------------------------------------------------------------------------------- /Assemblies/WorkTab.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Assemblies/WorkTab.dll -------------------------------------------------------------------------------- /Defs/PawnColumnDefs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Defs/PawnColumnDefs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/LICENSE -------------------------------------------------------------------------------- /Languages/ChineseSimplified/DefInjected/PawnColumnDef/PawnColumnDefs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Languages/ChineseSimplified/DefInjected/PawnColumnDef/PawnColumnDefs.xml -------------------------------------------------------------------------------- /Languages/ChineseSimplified/Keyed/Keyed-English.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Languages/ChineseSimplified/Keyed/Keyed-English.xml -------------------------------------------------------------------------------- /Languages/ChineseTraditional/DefInjected/PawnColumnDef/PawnColumnDefs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Languages/ChineseTraditional/DefInjected/PawnColumnDef/PawnColumnDefs.xml -------------------------------------------------------------------------------- /Languages/ChineseTraditional/Keyed/Keyed-English.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Languages/ChineseTraditional/Keyed/Keyed-English.xml -------------------------------------------------------------------------------- /Languages/English/Keyed/Keyed-English.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Languages/English/Keyed/Keyed-English.xml -------------------------------------------------------------------------------- /Languages/French/DefInjected/PawnColumnDefs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Languages/French/DefInjected/PawnColumnDefs.xml -------------------------------------------------------------------------------- /Languages/French/Keyed-French.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Languages/French/Keyed-French.xml -------------------------------------------------------------------------------- /Languages/German/DefInjected/PawnColumnDef/PawnColumnDefs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Languages/German/DefInjected/PawnColumnDef/PawnColumnDefs.xml -------------------------------------------------------------------------------- /Languages/German/Keyed/WorkTab-German-Keyed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Languages/German/Keyed/WorkTab-German-Keyed.xml -------------------------------------------------------------------------------- /Languages/German/LanguageInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Languages/German/LanguageInfo.xml -------------------------------------------------------------------------------- /Languages/Korean/DefInjected/PawnColumnDef/PawnColumnDefs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Languages/Korean/DefInjected/PawnColumnDef/PawnColumnDefs.xml -------------------------------------------------------------------------------- /Languages/Korean/Keyed/Keyed-English.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Languages/Korean/Keyed/Keyed-English.xml -------------------------------------------------------------------------------- /Languages/Russian/DefInjected/PawnColumnDef/PawnColumnDefs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Languages/Russian/DefInjected/PawnColumnDef/PawnColumnDefs.xml -------------------------------------------------------------------------------- /Languages/Russian/Keyed/Keyed-Russian.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Languages/Russian/Keyed/Keyed-Russian.xml -------------------------------------------------------------------------------- /Languages/Spanish/DefInjected/PawnColumnDef/PawnColumnDefs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Languages/Spanish/DefInjected/PawnColumnDef/PawnColumnDefs.xml -------------------------------------------------------------------------------- /Languages/Spanish/Keyed/Keyed-Spanish.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Languages/Spanish/Keyed/Keyed-Spanish.xml -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Readme.md -------------------------------------------------------------------------------- /Source/Core/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Source/Core/Constants.cs -------------------------------------------------------------------------------- /Source/Core/Controller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Source/Core/Controller.cs -------------------------------------------------------------------------------- /Source/Core/MapComponent_TimeKeeper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Source/Core/MapComponent_TimeKeeper.cs -------------------------------------------------------------------------------- /Source/Core/Resources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Source/Core/Resources.cs -------------------------------------------------------------------------------- /Source/Core/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Source/Core/Settings.cs -------------------------------------------------------------------------------- /Source/Core/VanillaWorkSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Source/Core/VanillaWorkSettings.cs -------------------------------------------------------------------------------- /Source/Extensions/Int_Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Source/Extensions/Int_Extensions.cs -------------------------------------------------------------------------------- /Source/Extensions/Job_Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Source/Extensions/Job_Extensions.cs -------------------------------------------------------------------------------- /Source/Extensions/Listing_Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Source/Extensions/Listing_Extensions.cs -------------------------------------------------------------------------------- /Source/Extensions/Pawn_Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Source/Extensions/Pawn_Extensions.cs -------------------------------------------------------------------------------- /Source/Extensions/String_Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Source/Extensions/String_Extensions.cs -------------------------------------------------------------------------------- /Source/Extensions/WorkGiver_Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Source/Extensions/WorkGiver_Extensions.cs -------------------------------------------------------------------------------- /Source/Extensions/WorkType_Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Source/Extensions/WorkType_Extensions.cs -------------------------------------------------------------------------------- /Source/Favourites/Dialog_CreateFavourite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Source/Favourites/Dialog_CreateFavourite.cs -------------------------------------------------------------------------------- /Source/Favourites/Dialog_EditFavourite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Source/Favourites/Dialog_EditFavourite.cs -------------------------------------------------------------------------------- /Source/Favourites/Dialog_Favourite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Source/Favourites/Dialog_Favourite.cs -------------------------------------------------------------------------------- /Source/Favourites/Favourite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Source/Favourites/Favourite.cs -------------------------------------------------------------------------------- /Source/Favourites/FavouriteManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Source/Favourites/FavouriteManager.cs -------------------------------------------------------------------------------- /Source/HarmonyPatches/DefGenerator_GenerateImpliedDefs_PreResolve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Source/HarmonyPatches/DefGenerator_GenerateImpliedDefs_PreResolve.cs -------------------------------------------------------------------------------- /Source/HarmonyPatches/PawnTable/PawnTable_PawnTableOnGUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Source/HarmonyPatches/PawnTable/PawnTable_PawnTableOnGUI.cs -------------------------------------------------------------------------------- /Source/HarmonyPatches/PawnTable/PawnTable_RecacheIfDirty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Source/HarmonyPatches/PawnTable/PawnTable_RecacheIfDirty.cs -------------------------------------------------------------------------------- /Source/HarmonyPatches/Worksettings/Pawn_WorkSettings_CacheWorkGiversInOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Source/HarmonyPatches/Worksettings/Pawn_WorkSettings_CacheWorkGiversInOrder.cs -------------------------------------------------------------------------------- /Source/HarmonyPatches/Worksettings/Pawn_WorkSettings_DisableAll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Source/HarmonyPatches/Worksettings/Pawn_WorkSettings_DisableAll.cs -------------------------------------------------------------------------------- /Source/HarmonyPatches/Worksettings/Pawn_WorkSettings_EnableAndInitialize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Source/HarmonyPatches/Worksettings/Pawn_WorkSettings_EnableAndInitialize.cs -------------------------------------------------------------------------------- /Source/HarmonyPatches/Worksettings/Pawn_WorkSettings_GetPriority.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Source/HarmonyPatches/Worksettings/Pawn_WorkSettings_GetPriority.cs -------------------------------------------------------------------------------- /Source/HarmonyPatches/Worksettings/Pawn_WorkSettings_SetPriority.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Source/HarmonyPatches/Worksettings/Pawn_WorkSettings_SetPriority.cs -------------------------------------------------------------------------------- /Source/PawnColumns/IAlternatingColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Source/PawnColumns/IAlternatingColumn.cs -------------------------------------------------------------------------------- /Source/PawnColumns/IExpandableColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Source/PawnColumns/IExpandableColumn.cs -------------------------------------------------------------------------------- /Source/PawnColumns/PawnColumnDef_WorkGiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Source/PawnColumns/PawnColumnDef_WorkGiver.cs -------------------------------------------------------------------------------- /Source/PawnColumns/PawnColumnWorker_CopyPasteDetailedWorkPriorities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Source/PawnColumns/PawnColumnWorker_CopyPasteDetailedWorkPriorities.cs -------------------------------------------------------------------------------- /Source/PawnColumns/PawnColumnWorker_Favourite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Source/PawnColumns/PawnColumnWorker_Favourite.cs -------------------------------------------------------------------------------- /Source/PawnColumns/PawnColumnWorker_Job.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Source/PawnColumns/PawnColumnWorker_Job.cs -------------------------------------------------------------------------------- /Source/PawnColumns/PawnColumnWorker_Mood.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Source/PawnColumns/PawnColumnWorker_Mood.cs -------------------------------------------------------------------------------- /Source/PawnColumns/PawnColumnWorker_WorkGiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Source/PawnColumns/PawnColumnWorker_WorkGiver.cs -------------------------------------------------------------------------------- /Source/PawnColumns/PawnColumnWorker_WorkTabLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Source/PawnColumns/PawnColumnWorker_WorkTabLabel.cs -------------------------------------------------------------------------------- /Source/PawnColumns/PawnColumnWorker_WorkType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Source/PawnColumns/PawnColumnWorker_WorkType.cs -------------------------------------------------------------------------------- /Source/PawnTable/MainTabWindow_WorkTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Source/PawnTable/MainTabWindow_WorkTab.cs -------------------------------------------------------------------------------- /Source/Priorities/PawnPriorityTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Source/Priorities/PawnPriorityTracker.cs -------------------------------------------------------------------------------- /Source/Priorities/PriorityManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Source/Priorities/PriorityManager.cs -------------------------------------------------------------------------------- /Source/Priorities/PriorityTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Source/Priorities/PriorityTracker.cs -------------------------------------------------------------------------------- /Source/Priorities/WorkPriority.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Source/Priorities/WorkPriority.cs -------------------------------------------------------------------------------- /Source/Utilities/DefOf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Source/Utilities/DefOf.cs -------------------------------------------------------------------------------- /Source/Utilities/DrawUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Source/Utilities/DrawUtilities.cs -------------------------------------------------------------------------------- /Source/Utilities/InteractionUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Source/Utilities/InteractionUtilities.cs -------------------------------------------------------------------------------- /Source/Utilities/LabelUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Source/Utilities/LabelUtilities.cs -------------------------------------------------------------------------------- /Source/Utilities/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Source/Utilities/Logger.cs -------------------------------------------------------------------------------- /Source/Utilities/TimeUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Source/Utilities/TimeUtilities.cs -------------------------------------------------------------------------------- /Source/WorkTab.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Source/WorkTab.csproj -------------------------------------------------------------------------------- /Source/WorkTab.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Source/WorkTab.sln -------------------------------------------------------------------------------- /Source/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Source/description.md -------------------------------------------------------------------------------- /Source/preview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Source/preview.svg -------------------------------------------------------------------------------- /Textures/UI/Icons/LeftArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/LeftArrow.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Mood/broken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Mood/broken.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Mood/content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Mood/content.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Mood/discontent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Mood/discontent.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Mood/happy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Mood/happy.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Mood/unhappy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Mood/unhappy.png -------------------------------------------------------------------------------- /Textures/UI/Icons/RightArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/RightArrow.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/3d-hammer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/3d-hammer.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/anvil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/anvil.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/art.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/art.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/blood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/blood.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/bow.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/box.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/brickwall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/brickwall.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/briefcase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/briefcase.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/bullseye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/bullseye.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/business.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/business.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/chef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/chef.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/chess-pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/chess-pawn.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/clean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/clean.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/cleaver-knife.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/cleaver-knife.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/clock.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/cog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/cog.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/combat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/combat.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/dice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/dice.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/drop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/drop.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/eat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/eat.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/extinguish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/extinguish.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/eye.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/farming.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/farming.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/fist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/fist.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/flower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/flower.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/gardening-rake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/gardening-rake.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/gun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/gun.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/ham-leg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/ham-leg.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/hammer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/hammer.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/hand.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/handcuffs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/handcuffs.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/haul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/haul.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/health.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/health.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/hunt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/hunt.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/ingots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/ingots.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/livestock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/livestock.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/mine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/mine.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/money.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/move.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/oil-drum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/oil-drum.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/paint-brush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/paint-brush.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/paw-print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/paw-print.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/pencil.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/pray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/pray.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/research.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/research.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/reset.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/rings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/rings.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/saw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/saw.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/science.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/science.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/shepherds-crook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/shepherds-crook.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/shirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/shirt.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/shovel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/shovel.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/sick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/sick.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/sickle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/sickle.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/signs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/signs.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/social.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/social.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/spanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/spanner.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/star.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/suits-clubs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/suits-clubs.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/suits-diamonds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/suits-diamonds.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/suits-hearts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/suits-hearts.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/suits-spades.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/suits-spades.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/syringe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/syringe.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/take.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/take.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/thread-ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/thread-ball.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/undress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/undress.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/unknown.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/wear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/wear.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/wood-axe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/wood-axe.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/wrench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/wrench.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Various/zzz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/Various/zzz.png -------------------------------------------------------------------------------- /Textures/UI/Icons/checks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/checks.png -------------------------------------------------------------------------------- /Textures/UI/Icons/clock-scheduler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/clock-scheduler.png -------------------------------------------------------------------------------- /Textures/UI/Icons/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/clock.png -------------------------------------------------------------------------------- /Textures/UI/Icons/collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/collapse.png -------------------------------------------------------------------------------- /Textures/UI/Icons/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/edit.png -------------------------------------------------------------------------------- /Textures/UI/Icons/expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/expand.png -------------------------------------------------------------------------------- /Textures/UI/Icons/half.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/half.png -------------------------------------------------------------------------------- /Textures/UI/Icons/now.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/now.png -------------------------------------------------------------------------------- /Textures/UI/Icons/numbers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/numbers.png -------------------------------------------------------------------------------- /Textures/UI/Icons/pin-clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/pin-clock.png -------------------------------------------------------------------------------- /Textures/UI/Icons/pin-eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/pin-eye.png -------------------------------------------------------------------------------- /Textures/UI/Icons/star-hollow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/star-hollow.png -------------------------------------------------------------------------------- /Textures/UI/Icons/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/star.png -------------------------------------------------------------------------------- /Textures/UI/Icons/whole-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/Textures/UI/Icons/whole-day.png -------------------------------------------------------------------------------- /modinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluffy-mods/WorkTab/HEAD/modinfo.json --------------------------------------------------------------------------------