├── README.md └── source ├── + ├── About │ ├── About.xml │ ├── ModIcon.png │ ├── Preview.png │ └── PublishedFileId.txt ├── Languages │ └── English │ │ └── Keyed │ │ └── Bubbles.xml ├── Legacy │ ├── 1.3 │ │ └── Assemblies │ │ │ └── Bubbles.dll │ ├── 1.4 │ │ └── Assemblies │ │ │ └── Bubbles.dll │ └── 1.5 │ │ └── Assemblies │ │ └── Bubbles.dll ├── LoadFolders.xml ├── README.md └── Textures │ └── Bubbles │ ├── Icon.png │ ├── Inner.png │ └── Outer.png ├── Access ├── Reflection.cs ├── RimWorld_MapInterface_MapInterfaceOnGUI_BeforeMainTabs.cs ├── RimWorld_PlaySettings_DoPlaySettingsGlobalControls.cs ├── Verse_PlayLog_Add.cs └── Verse_Profile_MemoryUtility_ClearAllMapsAndWorld.cs ├── Bubbles.csproj ├── Configuration ├── Listing_Settings.cs ├── Setting.cs └── SettingsEditor.cs ├── Core ├── Bubble.cs ├── Bubbler.cs ├── Compatibility.cs └── Textures.cs ├── Mod.cs └── Settings.cs /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaxe-Dev/Bubbles/HEAD/README.md -------------------------------------------------------------------------------- /source/+/About/About.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaxe-Dev/Bubbles/HEAD/source/+/About/About.xml -------------------------------------------------------------------------------- /source/+/About/ModIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaxe-Dev/Bubbles/HEAD/source/+/About/ModIcon.png -------------------------------------------------------------------------------- /source/+/About/Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaxe-Dev/Bubbles/HEAD/source/+/About/Preview.png -------------------------------------------------------------------------------- /source/+/About/PublishedFileId.txt: -------------------------------------------------------------------------------- 1 | 1516158345 -------------------------------------------------------------------------------- /source/+/Languages/English/Keyed/Bubbles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaxe-Dev/Bubbles/HEAD/source/+/Languages/English/Keyed/Bubbles.xml -------------------------------------------------------------------------------- /source/+/Legacy/1.3/Assemblies/Bubbles.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaxe-Dev/Bubbles/HEAD/source/+/Legacy/1.3/Assemblies/Bubbles.dll -------------------------------------------------------------------------------- /source/+/Legacy/1.4/Assemblies/Bubbles.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaxe-Dev/Bubbles/HEAD/source/+/Legacy/1.4/Assemblies/Bubbles.dll -------------------------------------------------------------------------------- /source/+/Legacy/1.5/Assemblies/Bubbles.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaxe-Dev/Bubbles/HEAD/source/+/Legacy/1.5/Assemblies/Bubbles.dll -------------------------------------------------------------------------------- /source/+/LoadFolders.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaxe-Dev/Bubbles/HEAD/source/+/LoadFolders.xml -------------------------------------------------------------------------------- /source/+/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaxe-Dev/Bubbles/HEAD/source/+/README.md -------------------------------------------------------------------------------- /source/+/Textures/Bubbles/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaxe-Dev/Bubbles/HEAD/source/+/Textures/Bubbles/Icon.png -------------------------------------------------------------------------------- /source/+/Textures/Bubbles/Inner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaxe-Dev/Bubbles/HEAD/source/+/Textures/Bubbles/Inner.png -------------------------------------------------------------------------------- /source/+/Textures/Bubbles/Outer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaxe-Dev/Bubbles/HEAD/source/+/Textures/Bubbles/Outer.png -------------------------------------------------------------------------------- /source/Access/Reflection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaxe-Dev/Bubbles/HEAD/source/Access/Reflection.cs -------------------------------------------------------------------------------- /source/Access/RimWorld_MapInterface_MapInterfaceOnGUI_BeforeMainTabs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaxe-Dev/Bubbles/HEAD/source/Access/RimWorld_MapInterface_MapInterfaceOnGUI_BeforeMainTabs.cs -------------------------------------------------------------------------------- /source/Access/RimWorld_PlaySettings_DoPlaySettingsGlobalControls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaxe-Dev/Bubbles/HEAD/source/Access/RimWorld_PlaySettings_DoPlaySettingsGlobalControls.cs -------------------------------------------------------------------------------- /source/Access/Verse_PlayLog_Add.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaxe-Dev/Bubbles/HEAD/source/Access/Verse_PlayLog_Add.cs -------------------------------------------------------------------------------- /source/Access/Verse_Profile_MemoryUtility_ClearAllMapsAndWorld.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaxe-Dev/Bubbles/HEAD/source/Access/Verse_Profile_MemoryUtility_ClearAllMapsAndWorld.cs -------------------------------------------------------------------------------- /source/Bubbles.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaxe-Dev/Bubbles/HEAD/source/Bubbles.csproj -------------------------------------------------------------------------------- /source/Configuration/Listing_Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaxe-Dev/Bubbles/HEAD/source/Configuration/Listing_Settings.cs -------------------------------------------------------------------------------- /source/Configuration/Setting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaxe-Dev/Bubbles/HEAD/source/Configuration/Setting.cs -------------------------------------------------------------------------------- /source/Configuration/SettingsEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaxe-Dev/Bubbles/HEAD/source/Configuration/SettingsEditor.cs -------------------------------------------------------------------------------- /source/Core/Bubble.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaxe-Dev/Bubbles/HEAD/source/Core/Bubble.cs -------------------------------------------------------------------------------- /source/Core/Bubbler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaxe-Dev/Bubbles/HEAD/source/Core/Bubbler.cs -------------------------------------------------------------------------------- /source/Core/Compatibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaxe-Dev/Bubbles/HEAD/source/Core/Compatibility.cs -------------------------------------------------------------------------------- /source/Core/Textures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaxe-Dev/Bubbles/HEAD/source/Core/Textures.cs -------------------------------------------------------------------------------- /source/Mod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaxe-Dev/Bubbles/HEAD/source/Mod.cs -------------------------------------------------------------------------------- /source/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaxe-Dev/Bubbles/HEAD/source/Settings.cs --------------------------------------------------------------------------------