├── .editorconfig ├── .github └── workflows │ └── publish.yml ├── .gitignore ├── HEADER ├── LICENSE.md ├── README.md ├── common ├── build.gradle └── src │ └── main │ ├── java │ └── me │ │ └── shedaniel │ │ ├── autoconfig │ │ ├── AutoConfig.java │ │ ├── ConfigData.java │ │ ├── ConfigHolder.java │ │ ├── ConfigManager.java │ │ ├── annotation │ │ │ ├── Config.java │ │ │ └── ConfigEntry.java │ │ ├── event │ │ │ └── ConfigSerializeEvent.java │ │ ├── example │ │ │ ├── ExampleConfig.java │ │ │ └── ExampleInits.java │ │ ├── gui │ │ │ ├── ConfigScreenProvider.java │ │ │ ├── DefaultGuiProviders.java │ │ │ ├── DefaultGuiTransformers.java │ │ │ └── registry │ │ │ │ ├── ComposedGuiRegistryAccess.java │ │ │ │ ├── DefaultGuiRegistryAccess.java │ │ │ │ ├── GuiRegistry.java │ │ │ │ └── api │ │ │ │ ├── GuiProvider.java │ │ │ │ ├── GuiRegistryAccess.java │ │ │ │ └── GuiTransformer.java │ │ ├── serializer │ │ │ ├── ConfigSerializer.java │ │ │ ├── DummyConfigSerializer.java │ │ │ ├── GsonConfigSerializer.java │ │ │ ├── JanksonConfigSerializer.java │ │ │ ├── PartitioningSerializer.java │ │ │ ├── Toml4jConfigSerializer.java │ │ │ └── YamlConfigSerializer.java │ │ └── util │ │ │ └── Utils.java │ │ ├── clothconfig2 │ │ ├── ClothConfigDemo.java │ │ ├── ClothConfigInitializer.java │ │ ├── api │ │ │ ├── AbstractConfigEntry.java │ │ │ ├── AbstractConfigListEntry.java │ │ │ ├── ConfigBuilder.java │ │ │ ├── ConfigCategory.java │ │ │ ├── ConfigEntryBuilder.java │ │ │ ├── ConfigScreen.java │ │ │ ├── DisableableWidget.java │ │ │ ├── Expandable.java │ │ │ ├── HideableWidget.java │ │ │ ├── LazyResettable.java │ │ │ ├── Modifier.java │ │ │ ├── ModifierKeyCode.java │ │ │ ├── QueuedTooltip.java │ │ │ ├── ReferenceBuildingConfigScreen.java │ │ │ ├── ReferenceProvider.java │ │ │ ├── Requirement.java │ │ │ ├── ScissorsHandler.java │ │ │ ├── ScissorsScreen.java │ │ │ ├── ScrollingContainer.java │ │ │ ├── TabbedConfigScreen.java │ │ │ ├── TickableWidget.java │ │ │ ├── Tooltip.java │ │ │ ├── ValueHolder.java │ │ │ ├── animator │ │ │ │ ├── ConstantValueProvider.java │ │ │ │ ├── ConventionValueAnimator.java │ │ │ │ ├── DoubleValueAnimatorImpl.java │ │ │ │ ├── MappingProgressValueAnimator.java │ │ │ │ ├── MappingValueAnimator.java │ │ │ │ ├── NumberAnimator.java │ │ │ │ ├── NumberAnimatorWrapped.java │ │ │ │ ├── ProgressValueAnimator.java │ │ │ │ ├── RecordValueAnimator.java │ │ │ │ ├── RecordValueAnimatorArgs.java │ │ │ │ ├── ValueAnimator.java │ │ │ │ ├── ValueAnimatorAsNumberAnimator.java │ │ │ │ └── ValueProvider.java │ │ │ └── scroll │ │ │ │ └── ScrollingContainer.java │ │ ├── gui │ │ │ ├── AbstractConfigScreen.java │ │ │ ├── AbstractTabbedConfigScreen.java │ │ │ ├── ClothConfigScreen.java │ │ │ ├── ClothConfigTabButton.java │ │ │ ├── ClothRequiresRestartScreen.java │ │ │ ├── GlobalizedClothConfigScreen.java │ │ │ ├── entries │ │ │ │ ├── AbstractListListEntry.java │ │ │ │ ├── AbstractNumberListEntry.java │ │ │ │ ├── AbstractTextFieldListListEntry.java │ │ │ │ ├── BaseListCell.java │ │ │ │ ├── BaseListEntry.java │ │ │ │ ├── BooleanListEntry.java │ │ │ │ ├── ColorEntry.java │ │ │ │ ├── DoubleListEntry.java │ │ │ │ ├── DoubleListListEntry.java │ │ │ │ ├── DropdownBoxEntry.java │ │ │ │ ├── EmptyEntry.java │ │ │ │ ├── EnumListEntry.java │ │ │ │ ├── FloatListEntry.java │ │ │ │ ├── FloatListListEntry.java │ │ │ │ ├── IntegerListEntry.java │ │ │ │ ├── IntegerListListEntry.java │ │ │ │ ├── IntegerSliderEntry.java │ │ │ │ ├── KeyCodeEntry.java │ │ │ │ ├── LongListEntry.java │ │ │ │ ├── LongListListEntry.java │ │ │ │ ├── LongSliderEntry.java │ │ │ │ ├── MultiElementListEntry.java │ │ │ │ ├── NestedListListEntry.java │ │ │ │ ├── SelectionListEntry.java │ │ │ │ ├── StringListEntry.java │ │ │ │ ├── StringListListEntry.java │ │ │ │ ├── SubCategoryListEntry.java │ │ │ │ ├── TextFieldListEntry.java │ │ │ │ ├── TextListEntry.java │ │ │ │ └── TooltipListEntry.java │ │ │ └── widget │ │ │ │ ├── ColorDisplayWidget.java │ │ │ │ ├── DynamicElementListWidget.java │ │ │ │ ├── DynamicEntryListWidget.java │ │ │ │ ├── DynamicNewSmoothScrollingEntryListWidget.java │ │ │ │ ├── DynamicSmoothScrollingEntryListWidget.java │ │ │ │ └── SearchFieldEntry.java │ │ └── impl │ │ │ ├── ConfigBuilderImpl.java │ │ │ ├── ConfigCategoryImpl.java │ │ │ ├── ConfigEntryBuilderImpl.java │ │ │ ├── EasingMethod.java │ │ │ ├── EasingMethods.java │ │ │ ├── GameOptionsHooks.java │ │ │ ├── KeyBindingHooks.java │ │ │ ├── ModifierKeyCodeImpl.java │ │ │ ├── ScissorsHandlerImpl.java │ │ │ └── builders │ │ │ ├── AbstractFieldBuilder.java │ │ │ ├── AbstractListBuilder.java │ │ │ ├── AbstractRangeFieldBuilder.java │ │ │ ├── AbstractRangeListBuilder.java │ │ │ ├── AbstractSliderFieldBuilder.java │ │ │ ├── BooleanToggleBuilder.java │ │ │ ├── ColorFieldBuilder.java │ │ │ ├── DoubleFieldBuilder.java │ │ │ ├── DoubleListBuilder.java │ │ │ ├── DropdownMenuBuilder.java │ │ │ ├── EnumSelectorBuilder.java │ │ │ ├── FieldBuilder.java │ │ │ ├── FloatFieldBuilder.java │ │ │ ├── FloatListBuilder.java │ │ │ ├── IntFieldBuilder.java │ │ │ ├── IntListBuilder.java │ │ │ ├── IntSliderBuilder.java │ │ │ ├── KeyCodeBuilder.java │ │ │ ├── LongFieldBuilder.java │ │ │ ├── LongListBuilder.java │ │ │ ├── LongSliderBuilder.java │ │ │ ├── SelectorBuilder.java │ │ │ ├── StringFieldBuilder.java │ │ │ ├── StringListBuilder.java │ │ │ ├── SubCategoryBuilder.java │ │ │ ├── TextDescriptionBuilder.java │ │ │ └── TextFieldBuilder.java │ │ └── math │ │ ├── api │ │ └── Executor.java │ │ └── impl │ │ └── PointHelper.java │ └── resources │ ├── assets │ └── cloth-config2 │ │ ├── lang │ │ ├── bg_bg.json │ │ ├── de_de.json │ │ ├── en_ud.json │ │ ├── en_us.json │ │ ├── es_es.json │ │ ├── es_mx.json │ │ ├── et_ee.json │ │ ├── fr_fr.json │ │ ├── hu_hu.json │ │ ├── it_it.json │ │ ├── ja_jp.json │ │ ├── kk_kz.json │ │ ├── ko_kr.json │ │ ├── lol_us.json │ │ ├── lzh.json │ │ ├── pt_br.json │ │ ├── ru_ru.json │ │ ├── sv_se.json │ │ ├── tt_ru.json │ │ ├── uk_ua.json │ │ ├── zh_cn.json │ │ ├── zh_hk.json │ │ └── zh_tw.json │ │ └── textures │ │ └── gui │ │ └── cloth_config.png │ └── cloth-config.accessWidener ├── crowdin.yml ├── fabric ├── build.gradle └── src │ └── main │ ├── java │ └── me │ │ └── shedaniel │ │ ├── autoconfig │ │ └── util │ │ │ └── fabric │ │ │ └── UtilsImpl.java │ │ └── clothconfig2 │ │ └── fabric │ │ └── ClothConfigModMenuDemo.java │ └── resources │ ├── cloth-config.accessWidener │ ├── fabric.mod.json │ └── icon.png ├── forge ├── build.gradle ├── gradle.properties └── src │ └── main │ ├── java │ └── me │ │ └── shedaniel │ │ ├── autoconfig │ │ └── util │ │ │ └── forge │ │ │ └── UtilsImpl.java │ │ └── clothconfig │ │ ├── ClothConfigForge.java │ │ └── ClothConfigForgeDemo.java │ └── resources │ ├── META-INF │ ├── accesstransformer.cfg │ └── mods.toml │ ├── icon.png │ └── pack.mcmeta ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/.gitignore -------------------------------------------------------------------------------- /HEADER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/HEADER -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/README.md -------------------------------------------------------------------------------- /common/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/build.gradle -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/autoconfig/AutoConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/autoconfig/AutoConfig.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/autoconfig/ConfigData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/autoconfig/ConfigData.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/autoconfig/ConfigHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/autoconfig/ConfigHolder.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/autoconfig/ConfigManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/autoconfig/ConfigManager.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/autoconfig/annotation/Config.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/autoconfig/annotation/Config.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/autoconfig/annotation/ConfigEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/autoconfig/annotation/ConfigEntry.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/autoconfig/event/ConfigSerializeEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/autoconfig/event/ConfigSerializeEvent.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/autoconfig/example/ExampleConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/autoconfig/example/ExampleConfig.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/autoconfig/example/ExampleInits.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/autoconfig/example/ExampleInits.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/autoconfig/gui/ConfigScreenProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/autoconfig/gui/ConfigScreenProvider.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/autoconfig/gui/DefaultGuiProviders.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/autoconfig/gui/DefaultGuiProviders.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/autoconfig/gui/DefaultGuiTransformers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/autoconfig/gui/DefaultGuiTransformers.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/autoconfig/gui/registry/ComposedGuiRegistryAccess.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/autoconfig/gui/registry/ComposedGuiRegistryAccess.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/autoconfig/gui/registry/DefaultGuiRegistryAccess.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/autoconfig/gui/registry/DefaultGuiRegistryAccess.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/autoconfig/gui/registry/GuiRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/autoconfig/gui/registry/GuiRegistry.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/autoconfig/gui/registry/api/GuiProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/autoconfig/gui/registry/api/GuiProvider.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/autoconfig/gui/registry/api/GuiRegistryAccess.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/autoconfig/gui/registry/api/GuiRegistryAccess.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/autoconfig/gui/registry/api/GuiTransformer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/autoconfig/gui/registry/api/GuiTransformer.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/autoconfig/serializer/ConfigSerializer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/autoconfig/serializer/ConfigSerializer.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/autoconfig/serializer/DummyConfigSerializer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/autoconfig/serializer/DummyConfigSerializer.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/autoconfig/serializer/GsonConfigSerializer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/autoconfig/serializer/GsonConfigSerializer.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/autoconfig/serializer/JanksonConfigSerializer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/autoconfig/serializer/JanksonConfigSerializer.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/autoconfig/serializer/PartitioningSerializer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/autoconfig/serializer/PartitioningSerializer.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/autoconfig/serializer/Toml4jConfigSerializer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/autoconfig/serializer/Toml4jConfigSerializer.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/autoconfig/serializer/YamlConfigSerializer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/autoconfig/serializer/YamlConfigSerializer.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/autoconfig/util/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/autoconfig/util/Utils.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/ClothConfigDemo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/ClothConfigDemo.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/ClothConfigInitializer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/ClothConfigInitializer.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/api/AbstractConfigEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/api/AbstractConfigEntry.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/api/AbstractConfigListEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/api/AbstractConfigListEntry.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/api/ConfigBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/api/ConfigBuilder.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/api/ConfigCategory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/api/ConfigCategory.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/api/ConfigEntryBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/api/ConfigEntryBuilder.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/api/ConfigScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/api/ConfigScreen.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/api/DisableableWidget.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/api/DisableableWidget.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/api/Expandable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/api/Expandable.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/api/HideableWidget.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/api/HideableWidget.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/api/LazyResettable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/api/LazyResettable.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/api/Modifier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/api/Modifier.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/api/ModifierKeyCode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/api/ModifierKeyCode.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/api/QueuedTooltip.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/api/QueuedTooltip.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/api/ReferenceBuildingConfigScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/api/ReferenceBuildingConfigScreen.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/api/ReferenceProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/api/ReferenceProvider.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/api/Requirement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/api/Requirement.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/api/ScissorsHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/api/ScissorsHandler.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/api/ScissorsScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/api/ScissorsScreen.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/api/ScrollingContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/api/ScrollingContainer.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/api/TabbedConfigScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/api/TabbedConfigScreen.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/api/TickableWidget.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/api/TickableWidget.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/api/Tooltip.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/api/Tooltip.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/api/ValueHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/api/ValueHolder.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/api/animator/ConstantValueProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/api/animator/ConstantValueProvider.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/api/animator/ConventionValueAnimator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/api/animator/ConventionValueAnimator.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/api/animator/DoubleValueAnimatorImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/api/animator/DoubleValueAnimatorImpl.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/api/animator/MappingProgressValueAnimator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/api/animator/MappingProgressValueAnimator.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/api/animator/MappingValueAnimator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/api/animator/MappingValueAnimator.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/api/animator/NumberAnimator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/api/animator/NumberAnimator.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/api/animator/NumberAnimatorWrapped.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/api/animator/NumberAnimatorWrapped.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/api/animator/ProgressValueAnimator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/api/animator/ProgressValueAnimator.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/api/animator/RecordValueAnimator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/api/animator/RecordValueAnimator.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/api/animator/RecordValueAnimatorArgs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/api/animator/RecordValueAnimatorArgs.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/api/animator/ValueAnimator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/api/animator/ValueAnimator.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/api/animator/ValueAnimatorAsNumberAnimator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/api/animator/ValueAnimatorAsNumberAnimator.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/api/animator/ValueProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/api/animator/ValueProvider.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/api/scroll/ScrollingContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/api/scroll/ScrollingContainer.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/gui/AbstractConfigScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/gui/AbstractConfigScreen.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/gui/AbstractTabbedConfigScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/gui/AbstractTabbedConfigScreen.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/gui/ClothConfigScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/gui/ClothConfigScreen.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/gui/ClothConfigTabButton.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/gui/ClothConfigTabButton.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/gui/ClothRequiresRestartScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/gui/ClothRequiresRestartScreen.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/gui/GlobalizedClothConfigScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/gui/GlobalizedClothConfigScreen.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/gui/entries/AbstractListListEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/gui/entries/AbstractListListEntry.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/gui/entries/AbstractNumberListEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/gui/entries/AbstractNumberListEntry.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/gui/entries/AbstractTextFieldListListEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/gui/entries/AbstractTextFieldListListEntry.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/gui/entries/BaseListCell.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/gui/entries/BaseListCell.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/gui/entries/BaseListEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/gui/entries/BaseListEntry.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/gui/entries/BooleanListEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/gui/entries/BooleanListEntry.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/gui/entries/ColorEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/gui/entries/ColorEntry.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/gui/entries/DoubleListEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/gui/entries/DoubleListEntry.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/gui/entries/DoubleListListEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/gui/entries/DoubleListListEntry.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/gui/entries/DropdownBoxEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/gui/entries/DropdownBoxEntry.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/gui/entries/EmptyEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/gui/entries/EmptyEntry.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/gui/entries/EnumListEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/gui/entries/EnumListEntry.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/gui/entries/FloatListEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/gui/entries/FloatListEntry.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/gui/entries/FloatListListEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/gui/entries/FloatListListEntry.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/gui/entries/IntegerListEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/gui/entries/IntegerListEntry.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/gui/entries/IntegerListListEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/gui/entries/IntegerListListEntry.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/gui/entries/IntegerSliderEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/gui/entries/IntegerSliderEntry.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/gui/entries/KeyCodeEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/gui/entries/KeyCodeEntry.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/gui/entries/LongListEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/gui/entries/LongListEntry.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/gui/entries/LongListListEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/gui/entries/LongListListEntry.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/gui/entries/LongSliderEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/gui/entries/LongSliderEntry.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/gui/entries/MultiElementListEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/gui/entries/MultiElementListEntry.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/gui/entries/NestedListListEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/gui/entries/NestedListListEntry.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/gui/entries/SelectionListEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/gui/entries/SelectionListEntry.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/gui/entries/StringListEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/gui/entries/StringListEntry.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/gui/entries/StringListListEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/gui/entries/StringListListEntry.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/gui/entries/SubCategoryListEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/gui/entries/SubCategoryListEntry.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/gui/entries/TextFieldListEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/gui/entries/TextFieldListEntry.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/gui/entries/TextListEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/gui/entries/TextListEntry.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/gui/entries/TooltipListEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/gui/entries/TooltipListEntry.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/gui/widget/ColorDisplayWidget.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/gui/widget/ColorDisplayWidget.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/gui/widget/DynamicElementListWidget.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/gui/widget/DynamicElementListWidget.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/gui/widget/DynamicEntryListWidget.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/gui/widget/DynamicEntryListWidget.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/gui/widget/DynamicNewSmoothScrollingEntryListWidget.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/gui/widget/DynamicNewSmoothScrollingEntryListWidget.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/gui/widget/DynamicSmoothScrollingEntryListWidget.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/gui/widget/DynamicSmoothScrollingEntryListWidget.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/gui/widget/SearchFieldEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/gui/widget/SearchFieldEntry.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/impl/ConfigBuilderImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/impl/ConfigBuilderImpl.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/impl/ConfigCategoryImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/impl/ConfigCategoryImpl.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/impl/ConfigEntryBuilderImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/impl/ConfigEntryBuilderImpl.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/impl/EasingMethod.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/impl/EasingMethod.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/impl/EasingMethods.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/impl/EasingMethods.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/impl/GameOptionsHooks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/impl/GameOptionsHooks.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/impl/KeyBindingHooks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/impl/KeyBindingHooks.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/impl/ModifierKeyCodeImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/impl/ModifierKeyCodeImpl.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/impl/ScissorsHandlerImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/impl/ScissorsHandlerImpl.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/impl/builders/AbstractFieldBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/impl/builders/AbstractFieldBuilder.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/impl/builders/AbstractListBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/impl/builders/AbstractListBuilder.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/impl/builders/AbstractRangeFieldBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/impl/builders/AbstractRangeFieldBuilder.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/impl/builders/AbstractRangeListBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/impl/builders/AbstractRangeListBuilder.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/impl/builders/AbstractSliderFieldBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/impl/builders/AbstractSliderFieldBuilder.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/impl/builders/BooleanToggleBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/impl/builders/BooleanToggleBuilder.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/impl/builders/ColorFieldBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/impl/builders/ColorFieldBuilder.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/impl/builders/DoubleFieldBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/impl/builders/DoubleFieldBuilder.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/impl/builders/DoubleListBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/impl/builders/DoubleListBuilder.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/impl/builders/DropdownMenuBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/impl/builders/DropdownMenuBuilder.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/impl/builders/EnumSelectorBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/impl/builders/EnumSelectorBuilder.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/impl/builders/FieldBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/impl/builders/FieldBuilder.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/impl/builders/FloatFieldBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/impl/builders/FloatFieldBuilder.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/impl/builders/FloatListBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/impl/builders/FloatListBuilder.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/impl/builders/IntFieldBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/impl/builders/IntFieldBuilder.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/impl/builders/IntListBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/impl/builders/IntListBuilder.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/impl/builders/IntSliderBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/impl/builders/IntSliderBuilder.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/impl/builders/KeyCodeBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/impl/builders/KeyCodeBuilder.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/impl/builders/LongFieldBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/impl/builders/LongFieldBuilder.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/impl/builders/LongListBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/impl/builders/LongListBuilder.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/impl/builders/LongSliderBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/impl/builders/LongSliderBuilder.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/impl/builders/SelectorBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/impl/builders/SelectorBuilder.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/impl/builders/StringFieldBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/impl/builders/StringFieldBuilder.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/impl/builders/StringListBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/impl/builders/StringListBuilder.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/impl/builders/SubCategoryBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/impl/builders/SubCategoryBuilder.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/impl/builders/TextDescriptionBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/impl/builders/TextDescriptionBuilder.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/clothconfig2/impl/builders/TextFieldBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/clothconfig2/impl/builders/TextFieldBuilder.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/math/api/Executor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/math/api/Executor.java -------------------------------------------------------------------------------- /common/src/main/java/me/shedaniel/math/impl/PointHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/java/me/shedaniel/math/impl/PointHelper.java -------------------------------------------------------------------------------- /common/src/main/resources/assets/cloth-config2/lang/bg_bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/resources/assets/cloth-config2/lang/bg_bg.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/cloth-config2/lang/de_de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/resources/assets/cloth-config2/lang/de_de.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/cloth-config2/lang/en_ud.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/resources/assets/cloth-config2/lang/en_ud.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/cloth-config2/lang/en_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/resources/assets/cloth-config2/lang/en_us.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/cloth-config2/lang/es_es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/resources/assets/cloth-config2/lang/es_es.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/cloth-config2/lang/es_mx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/resources/assets/cloth-config2/lang/es_mx.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/cloth-config2/lang/et_ee.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/resources/assets/cloth-config2/lang/et_ee.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/cloth-config2/lang/fr_fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/resources/assets/cloth-config2/lang/fr_fr.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/cloth-config2/lang/hu_hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/resources/assets/cloth-config2/lang/hu_hu.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/cloth-config2/lang/it_it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/resources/assets/cloth-config2/lang/it_it.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/cloth-config2/lang/ja_jp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/resources/assets/cloth-config2/lang/ja_jp.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/cloth-config2/lang/kk_kz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/resources/assets/cloth-config2/lang/kk_kz.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/cloth-config2/lang/ko_kr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/resources/assets/cloth-config2/lang/ko_kr.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/cloth-config2/lang/lol_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/resources/assets/cloth-config2/lang/lol_us.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/cloth-config2/lang/lzh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/resources/assets/cloth-config2/lang/lzh.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/cloth-config2/lang/pt_br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/resources/assets/cloth-config2/lang/pt_br.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/cloth-config2/lang/ru_ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/resources/assets/cloth-config2/lang/ru_ru.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/cloth-config2/lang/sv_se.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/resources/assets/cloth-config2/lang/sv_se.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/cloth-config2/lang/tt_ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/resources/assets/cloth-config2/lang/tt_ru.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/cloth-config2/lang/uk_ua.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/resources/assets/cloth-config2/lang/uk_ua.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/cloth-config2/lang/zh_cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/resources/assets/cloth-config2/lang/zh_cn.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/cloth-config2/lang/zh_hk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/resources/assets/cloth-config2/lang/zh_hk.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/cloth-config2/lang/zh_tw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/resources/assets/cloth-config2/lang/zh_tw.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/cloth-config2/textures/gui/cloth_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/resources/assets/cloth-config2/textures/gui/cloth_config.png -------------------------------------------------------------------------------- /common/src/main/resources/cloth-config.accessWidener: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/common/src/main/resources/cloth-config.accessWidener -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/crowdin.yml -------------------------------------------------------------------------------- /fabric/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/fabric/build.gradle -------------------------------------------------------------------------------- /fabric/src/main/java/me/shedaniel/autoconfig/util/fabric/UtilsImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/fabric/src/main/java/me/shedaniel/autoconfig/util/fabric/UtilsImpl.java -------------------------------------------------------------------------------- /fabric/src/main/java/me/shedaniel/clothconfig2/fabric/ClothConfigModMenuDemo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/fabric/src/main/java/me/shedaniel/clothconfig2/fabric/ClothConfigModMenuDemo.java -------------------------------------------------------------------------------- /fabric/src/main/resources/cloth-config.accessWidener: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/fabric/src/main/resources/cloth-config.accessWidener -------------------------------------------------------------------------------- /fabric/src/main/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/fabric/src/main/resources/fabric.mod.json -------------------------------------------------------------------------------- /fabric/src/main/resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/fabric/src/main/resources/icon.png -------------------------------------------------------------------------------- /forge/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/forge/build.gradle -------------------------------------------------------------------------------- /forge/gradle.properties: -------------------------------------------------------------------------------- 1 | loom.forge=true 2 | -------------------------------------------------------------------------------- /forge/src/main/java/me/shedaniel/autoconfig/util/forge/UtilsImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/forge/src/main/java/me/shedaniel/autoconfig/util/forge/UtilsImpl.java -------------------------------------------------------------------------------- /forge/src/main/java/me/shedaniel/clothconfig/ClothConfigForge.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/forge/src/main/java/me/shedaniel/clothconfig/ClothConfigForge.java -------------------------------------------------------------------------------- /forge/src/main/java/me/shedaniel/clothconfig/ClothConfigForgeDemo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/forge/src/main/java/me/shedaniel/clothconfig/ClothConfigForgeDemo.java -------------------------------------------------------------------------------- /forge/src/main/resources/META-INF/accesstransformer.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/forge/src/main/resources/META-INF/accesstransformer.cfg -------------------------------------------------------------------------------- /forge/src/main/resources/META-INF/mods.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/forge/src/main/resources/META-INF/mods.toml -------------------------------------------------------------------------------- /forge/src/main/resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/forge/src/main/resources/icon.png -------------------------------------------------------------------------------- /forge/src/main/resources/pack.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/forge/src/main/resources/pack.mcmeta -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shedaniel/cloth-config/HEAD/settings.gradle --------------------------------------------------------------------------------