├── .gitignore ├── .gitmodules ├── Assembly-CSharp.Base.mm ├── Assembly-CSharp.Base.mm.csproj ├── Properties │ └── AssemblyInfo.cs ├── res │ └── idmaps │ │ └── items.txt └── src │ ├── API │ ├── IDPool.cs │ └── Prefab.cs │ ├── AnimDumper │ ├── CollectionDumper.cs │ └── GridPacker.cs │ ├── AnimLoader │ ├── Animation.cs │ ├── AnimatorGenerator.cs │ ├── Collection.cs │ ├── CollectionGenerator.cs │ └── YAMLMapping.cs │ ├── Console │ ├── AutoCompletor.cs │ ├── Backend.cs │ ├── Command.cs │ ├── DefaultCommands.cs │ ├── DualWieldForcer.cs │ ├── History.cs │ ├── Menu.cs │ └── Parser │ │ ├── AST.cs │ │ ├── Executor.cs │ │ ├── Lexer.cs │ │ ├── Parser.cs │ │ └── Token.cs │ ├── External │ ├── ReflectionHelper.cs │ ├── SGUI │ │ ├── .gitignore │ │ ├── README.md │ │ └── src │ │ │ ├── Animations │ │ │ ├── SAnimationSequence.cs │ │ │ ├── SEasings.cs │ │ │ ├── SFadeAnimation.cs │ │ │ ├── SFadeInAnimation.cs │ │ │ ├── SFadeOutAnimation.cs │ │ │ ├── SFadeOutShrinkSequence.cs │ │ │ └── SShrinkAnimation.cs │ │ │ ├── Backends │ │ │ └── SGUIIMBackend.cs │ │ │ ├── DFEXT │ │ │ └── SGUIDFInput.cs │ │ │ ├── DotNetEXT │ │ │ ├── AddingNewEventArgs.cs │ │ │ ├── AddingNewEventHandler.cs │ │ │ ├── ICancelAddNew.cs │ │ │ └── IRaiseItemChangedEvents.cs │ │ │ ├── EMouseStatus.cs │ │ │ ├── Elements │ │ │ ├── SButton.cs │ │ │ ├── SGroup.cs │ │ │ ├── SImage.cs │ │ │ ├── SLabel.cs │ │ │ ├── SPreloader.cs │ │ │ ├── SRect.cs │ │ │ ├── STextField.cs │ │ │ └── SWindowTitleBar.cs │ │ │ ├── ISGUIBackend.cs │ │ │ ├── Modifiers │ │ │ ├── SInGameModifier.cs │ │ │ └── SRandomLabelModifier.cs │ │ │ ├── SAnimation.cs │ │ │ ├── SElement.cs │ │ │ ├── SGUIExtensions.cs │ │ │ ├── SGUIRoot.cs │ │ │ └── SModifier.cs │ └── ZipStorer.cs │ ├── GUI │ ├── Backend.cs │ └── Font.cs │ ├── Hooks │ └── RuntimeHooks.cs │ ├── Lua │ ├── Globals.cs │ ├── Hooks.cs │ ├── LuaTool.cs │ └── Triggers.cs │ ├── Menu │ └── Menu.cs │ ├── ModLoader │ ├── AssemblyNameMap.cs │ ├── Metadata.cs │ ├── ModInfo.cs │ └── ModLoader.cs │ ├── ModResources │ ├── LoadedResource.cs │ ├── ModInfoResources.cs │ └── ResourcePool.cs │ ├── ModTheGungeon │ ├── API.cs │ ├── IDMaps.cs │ └── ModTheGungeon.cs │ ├── Notifications │ ├── Animations.cs │ ├── Notification.cs │ └── NotificationController.cs │ ├── Patches │ ├── ModOptions.cs │ ├── patch_MainMenuFoyerController.cs │ ├── patch_dfButton.cs │ ├── patch_dfInputManager.cs │ └── patch_tk2dSpriteDefinition.cs │ └── PrefabricTest.cs ├── Assembly-CSharp.Core.mm ├── Assembly-CSharp.Core.mm.csproj └── src │ ├── Core │ ├── Backend.cs │ ├── Core.cs │ ├── EventHooks.cs │ ├── Logger.cs │ ├── Paths.cs │ └── UnityUtil.cs │ ├── Extensions │ ├── BinaryReader.cs │ └── String.cs │ ├── External │ └── ObjectDumper.cs │ └── Patches │ ├── patch_FoyerPreloader.cs │ ├── patch_GameManager.cs │ └── patch_MainMenuFoyerController.cs ├── Assembly-CSharp.TexMod.mm ├── Assembly-CSharp.TexMod.mm.csproj ├── Properties │ └── AssemblyInfo.cs └── src │ ├── Patches │ ├── DF_Ident │ │ └── patch_MainMenuFoyerController.cs │ ├── patch_GameObject.cs │ ├── patch_dfTextureSprite.cs │ ├── patch_tk2dBaseSprite.cs │ ├── patch_tk2dSpriteAnimator.cs │ └── patch_tk2dSpriteCollectionData.cs │ └── TexMod │ ├── TexMod.cs │ └── TexModExtra.cs ├── ETGModNeo.sln ├── LICENSE_MODTHEGUNGEON ├── LICENSE_MONO ├── Plugins ├── Linux │ ├── 32 │ │ └── liblua5.1.so │ └── 64 │ │ └── liblua5.1.so ├── MacOS │ └── lua5.1.bundle └── Windows │ ├── 32 │ └── lua5.1.dll │ └── 64 │ └── lua5.1.dll ├── README.md ├── Resources ├── bullet.png ├── idmaps │ ├── enemies.txt │ └── items.txt ├── logo.coll.yml ├── logo.png ├── lua │ ├── env.lua │ └── sandbox.lua └── prefabric_test.json ├── UnityEngine.Base.mm ├── Properties │ └── AssemblyInfo.cs ├── UnityEngine.CoreModule.Base.mm.csproj └── src │ ├── Extensions │ └── Texture2DExt.cs │ └── Patches │ └── patch_Resources.cs ├── UnityEngine.Core.mm ├── Properties │ └── AssemblyInfo.cs ├── UnityEngine.CoreModule.Core.mm.csproj └── src │ └── Patches │ └── patch_Logger.cs ├── libs ├── Assembly-CSharp.dll ├── Ionic.Zip.dll ├── Mono.Cecil.dll ├── UnityEngine.CoreModule.dll ├── UnityEngine.IMGUIModule.dll ├── UnityEngine.ImageConversionModule.dll ├── UnityEngine.InputModule.dll ├── UnityEngine.TextRenderingModule.dll ├── UnityEngine.UIModule.dll └── UnityEngine.dll └── metadata.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/.gitmodules -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/Assembly-CSharp.Base.mm.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/Assembly-CSharp.Base.mm.csproj -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/res/idmaps/items.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/res/idmaps/items.txt -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/API/IDPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/API/IDPool.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/API/Prefab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/API/Prefab.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/AnimDumper/CollectionDumper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/AnimDumper/CollectionDumper.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/AnimDumper/GridPacker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/AnimDumper/GridPacker.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/AnimLoader/Animation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/AnimLoader/Animation.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/AnimLoader/AnimatorGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/AnimLoader/AnimatorGenerator.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/AnimLoader/Collection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/AnimLoader/Collection.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/AnimLoader/CollectionGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/AnimLoader/CollectionGenerator.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/AnimLoader/YAMLMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/AnimLoader/YAMLMapping.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/Console/AutoCompletor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/Console/AutoCompletor.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/Console/Backend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/Console/Backend.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/Console/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/Console/Command.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/Console/DefaultCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/Console/DefaultCommands.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/Console/DualWieldForcer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/Console/DualWieldForcer.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/Console/History.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/Console/History.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/Console/Menu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/Console/Menu.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/Console/Parser/AST.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/Console/Parser/AST.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/Console/Parser/Executor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/Console/Parser/Executor.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/Console/Parser/Lexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/Console/Parser/Lexer.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/Console/Parser/Parser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/Console/Parser/Parser.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/Console/Parser/Token.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/Console/Parser/Token.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/External/ReflectionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/External/ReflectionHelper.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/External/SGUI/.gitignore: -------------------------------------------------------------------------------- 1 | *.meta 2 | -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/External/SGUI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/External/SGUI/README.md -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/External/SGUI/src/Animations/SAnimationSequence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/External/SGUI/src/Animations/SAnimationSequence.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/External/SGUI/src/Animations/SEasings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/External/SGUI/src/Animations/SEasings.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/External/SGUI/src/Animations/SFadeAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/External/SGUI/src/Animations/SFadeAnimation.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/External/SGUI/src/Animations/SFadeInAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/External/SGUI/src/Animations/SFadeInAnimation.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/External/SGUI/src/Animations/SFadeOutAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/External/SGUI/src/Animations/SFadeOutAnimation.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/External/SGUI/src/Animations/SFadeOutShrinkSequence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/External/SGUI/src/Animations/SFadeOutShrinkSequence.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/External/SGUI/src/Animations/SShrinkAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/External/SGUI/src/Animations/SShrinkAnimation.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/External/SGUI/src/Backends/SGUIIMBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/External/SGUI/src/Backends/SGUIIMBackend.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/External/SGUI/src/DFEXT/SGUIDFInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/External/SGUI/src/DFEXT/SGUIDFInput.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/External/SGUI/src/DotNetEXT/AddingNewEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/External/SGUI/src/DotNetEXT/AddingNewEventArgs.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/External/SGUI/src/DotNetEXT/AddingNewEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/External/SGUI/src/DotNetEXT/AddingNewEventHandler.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/External/SGUI/src/DotNetEXT/ICancelAddNew.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/External/SGUI/src/DotNetEXT/ICancelAddNew.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/External/SGUI/src/DotNetEXT/IRaiseItemChangedEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/External/SGUI/src/DotNetEXT/IRaiseItemChangedEvents.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/External/SGUI/src/EMouseStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/External/SGUI/src/EMouseStatus.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/External/SGUI/src/Elements/SButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/External/SGUI/src/Elements/SButton.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/External/SGUI/src/Elements/SGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/External/SGUI/src/Elements/SGroup.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/External/SGUI/src/Elements/SImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/External/SGUI/src/Elements/SImage.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/External/SGUI/src/Elements/SLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/External/SGUI/src/Elements/SLabel.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/External/SGUI/src/Elements/SPreloader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/External/SGUI/src/Elements/SPreloader.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/External/SGUI/src/Elements/SRect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/External/SGUI/src/Elements/SRect.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/External/SGUI/src/Elements/STextField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/External/SGUI/src/Elements/STextField.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/External/SGUI/src/Elements/SWindowTitleBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/External/SGUI/src/Elements/SWindowTitleBar.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/External/SGUI/src/ISGUIBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/External/SGUI/src/ISGUIBackend.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/External/SGUI/src/Modifiers/SInGameModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/External/SGUI/src/Modifiers/SInGameModifier.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/External/SGUI/src/Modifiers/SRandomLabelModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/External/SGUI/src/Modifiers/SRandomLabelModifier.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/External/SGUI/src/SAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/External/SGUI/src/SAnimation.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/External/SGUI/src/SElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/External/SGUI/src/SElement.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/External/SGUI/src/SGUIExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/External/SGUI/src/SGUIExtensions.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/External/SGUI/src/SGUIRoot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/External/SGUI/src/SGUIRoot.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/External/SGUI/src/SModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/External/SGUI/src/SModifier.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/External/ZipStorer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/External/ZipStorer.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/GUI/Backend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/GUI/Backend.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/GUI/Font.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/GUI/Font.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/Hooks/RuntimeHooks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/Hooks/RuntimeHooks.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/Lua/Globals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/Lua/Globals.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/Lua/Hooks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/Lua/Hooks.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/Lua/LuaTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/Lua/LuaTool.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/Lua/Triggers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/Lua/Triggers.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/Menu/Menu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/Menu/Menu.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/ModLoader/AssemblyNameMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/ModLoader/AssemblyNameMap.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/ModLoader/Metadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/ModLoader/Metadata.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/ModLoader/ModInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/ModLoader/ModInfo.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/ModLoader/ModLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/ModLoader/ModLoader.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/ModResources/LoadedResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/ModResources/LoadedResource.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/ModResources/ModInfoResources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/ModResources/ModInfoResources.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/ModResources/ResourcePool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/ModResources/ResourcePool.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/ModTheGungeon/API.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/ModTheGungeon/API.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/ModTheGungeon/IDMaps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/ModTheGungeon/IDMaps.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/ModTheGungeon/ModTheGungeon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/ModTheGungeon/ModTheGungeon.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/Notifications/Animations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/Notifications/Animations.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/Notifications/Notification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/Notifications/Notification.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/Notifications/NotificationController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/Notifications/NotificationController.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/Patches/ModOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/Patches/ModOptions.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/Patches/patch_MainMenuFoyerController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/Patches/patch_MainMenuFoyerController.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/Patches/patch_dfButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/Patches/patch_dfButton.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/Patches/patch_dfInputManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/Patches/patch_dfInputManager.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/Patches/patch_tk2dSpriteDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/Patches/patch_tk2dSpriteDefinition.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Base.mm/src/PrefabricTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Base.mm/src/PrefabricTest.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Core.mm/Assembly-CSharp.Core.mm.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Core.mm/Assembly-CSharp.Core.mm.csproj -------------------------------------------------------------------------------- /Assembly-CSharp.Core.mm/src/Core/Backend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Core.mm/src/Core/Backend.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Core.mm/src/Core/Core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Core.mm/src/Core/Core.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Core.mm/src/Core/EventHooks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Core.mm/src/Core/EventHooks.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Core.mm/src/Core/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Core.mm/src/Core/Logger.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Core.mm/src/Core/Paths.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Core.mm/src/Core/Paths.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Core.mm/src/Core/UnityUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Core.mm/src/Core/UnityUtil.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Core.mm/src/Extensions/BinaryReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Core.mm/src/Extensions/BinaryReader.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Core.mm/src/Extensions/String.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Core.mm/src/Extensions/String.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Core.mm/src/External/ObjectDumper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Core.mm/src/External/ObjectDumper.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Core.mm/src/Patches/patch_FoyerPreloader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Core.mm/src/Patches/patch_FoyerPreloader.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Core.mm/src/Patches/patch_GameManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Core.mm/src/Patches/patch_GameManager.cs -------------------------------------------------------------------------------- /Assembly-CSharp.Core.mm/src/Patches/patch_MainMenuFoyerController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.Core.mm/src/Patches/patch_MainMenuFoyerController.cs -------------------------------------------------------------------------------- /Assembly-CSharp.TexMod.mm/Assembly-CSharp.TexMod.mm.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.TexMod.mm/Assembly-CSharp.TexMod.mm.csproj -------------------------------------------------------------------------------- /Assembly-CSharp.TexMod.mm/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.TexMod.mm/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Assembly-CSharp.TexMod.mm/src/Patches/DF_Ident/patch_MainMenuFoyerController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.TexMod.mm/src/Patches/DF_Ident/patch_MainMenuFoyerController.cs -------------------------------------------------------------------------------- /Assembly-CSharp.TexMod.mm/src/Patches/patch_GameObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.TexMod.mm/src/Patches/patch_GameObject.cs -------------------------------------------------------------------------------- /Assembly-CSharp.TexMod.mm/src/Patches/patch_dfTextureSprite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.TexMod.mm/src/Patches/patch_dfTextureSprite.cs -------------------------------------------------------------------------------- /Assembly-CSharp.TexMod.mm/src/Patches/patch_tk2dBaseSprite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.TexMod.mm/src/Patches/patch_tk2dBaseSprite.cs -------------------------------------------------------------------------------- /Assembly-CSharp.TexMod.mm/src/Patches/patch_tk2dSpriteAnimator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.TexMod.mm/src/Patches/patch_tk2dSpriteAnimator.cs -------------------------------------------------------------------------------- /Assembly-CSharp.TexMod.mm/src/Patches/patch_tk2dSpriteCollectionData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.TexMod.mm/src/Patches/patch_tk2dSpriteCollectionData.cs -------------------------------------------------------------------------------- /Assembly-CSharp.TexMod.mm/src/TexMod/TexMod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.TexMod.mm/src/TexMod/TexMod.cs -------------------------------------------------------------------------------- /Assembly-CSharp.TexMod.mm/src/TexMod/TexModExtra.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Assembly-CSharp.TexMod.mm/src/TexMod/TexModExtra.cs -------------------------------------------------------------------------------- /ETGModNeo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/ETGModNeo.sln -------------------------------------------------------------------------------- /LICENSE_MODTHEGUNGEON: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/LICENSE_MODTHEGUNGEON -------------------------------------------------------------------------------- /LICENSE_MONO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/LICENSE_MONO -------------------------------------------------------------------------------- /Plugins/Linux/32/liblua5.1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Plugins/Linux/32/liblua5.1.so -------------------------------------------------------------------------------- /Plugins/Linux/64/liblua5.1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Plugins/Linux/64/liblua5.1.so -------------------------------------------------------------------------------- /Plugins/MacOS/lua5.1.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Plugins/MacOS/lua5.1.bundle -------------------------------------------------------------------------------- /Plugins/Windows/32/lua5.1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Plugins/Windows/32/lua5.1.dll -------------------------------------------------------------------------------- /Plugins/Windows/64/lua5.1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Plugins/Windows/64/lua5.1.dll -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/README.md -------------------------------------------------------------------------------- /Resources/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Resources/bullet.png -------------------------------------------------------------------------------- /Resources/idmaps/enemies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Resources/idmaps/enemies.txt -------------------------------------------------------------------------------- /Resources/idmaps/items.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Resources/idmaps/items.txt -------------------------------------------------------------------------------- /Resources/logo.coll.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Resources/logo.coll.yml -------------------------------------------------------------------------------- /Resources/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Resources/logo.png -------------------------------------------------------------------------------- /Resources/lua/env.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Resources/lua/env.lua -------------------------------------------------------------------------------- /Resources/lua/sandbox.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Resources/lua/sandbox.lua -------------------------------------------------------------------------------- /Resources/prefabric_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/Resources/prefabric_test.json -------------------------------------------------------------------------------- /UnityEngine.Base.mm/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/UnityEngine.Base.mm/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /UnityEngine.Base.mm/UnityEngine.CoreModule.Base.mm.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/UnityEngine.Base.mm/UnityEngine.CoreModule.Base.mm.csproj -------------------------------------------------------------------------------- /UnityEngine.Base.mm/src/Extensions/Texture2DExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/UnityEngine.Base.mm/src/Extensions/Texture2DExt.cs -------------------------------------------------------------------------------- /UnityEngine.Base.mm/src/Patches/patch_Resources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/UnityEngine.Base.mm/src/Patches/patch_Resources.cs -------------------------------------------------------------------------------- /UnityEngine.Core.mm/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/UnityEngine.Core.mm/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /UnityEngine.Core.mm/UnityEngine.CoreModule.Core.mm.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/UnityEngine.Core.mm/UnityEngine.CoreModule.Core.mm.csproj -------------------------------------------------------------------------------- /UnityEngine.Core.mm/src/Patches/patch_Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/UnityEngine.Core.mm/src/Patches/patch_Logger.cs -------------------------------------------------------------------------------- /libs/Assembly-CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/libs/Assembly-CSharp.dll -------------------------------------------------------------------------------- /libs/Ionic.Zip.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/libs/Ionic.Zip.dll -------------------------------------------------------------------------------- /libs/Mono.Cecil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/libs/Mono.Cecil.dll -------------------------------------------------------------------------------- /libs/UnityEngine.CoreModule.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/libs/UnityEngine.CoreModule.dll -------------------------------------------------------------------------------- /libs/UnityEngine.IMGUIModule.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/libs/UnityEngine.IMGUIModule.dll -------------------------------------------------------------------------------- /libs/UnityEngine.ImageConversionModule.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/libs/UnityEngine.ImageConversionModule.dll -------------------------------------------------------------------------------- /libs/UnityEngine.InputModule.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/libs/UnityEngine.InputModule.dll -------------------------------------------------------------------------------- /libs/UnityEngine.TextRenderingModule.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/libs/UnityEngine.TextRenderingModule.dll -------------------------------------------------------------------------------- /libs/UnityEngine.UIModule.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/libs/UnityEngine.UIModule.dll -------------------------------------------------------------------------------- /libs/UnityEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/libs/UnityEngine.dll -------------------------------------------------------------------------------- /metadata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModTheGungeon/ETGMod.Reloaded/HEAD/metadata.yml --------------------------------------------------------------------------------