diff options
author | Juuxel <6596629+Juuxel@users.noreply.github.com> | 2021-02-27 16:18:48 +0200 |
---|---|---|
committer | Juuxel <6596629+Juuxel@users.noreply.github.com> | 2021-02-27 16:18:48 +0200 |
commit | 9b4c9e48002d29b662fb11b2ba58177f04268ba5 (patch) | |
tree | f4310a1c94bf34a79cd14aa8605eca8bc2743a3f /src/main/resources/fabric.mod.json | |
parent | 6d825b4e50c462ef3f1abe9a0a20f9384086ea1b (diff) | |
download | LibGui-9b4c9e48002d29b662fb11b2ba58177f04268ba5.tar.gz LibGui-9b4c9e48002d29b662fb11b2ba58177f04268ba5.tar.bz2 LibGui-9b4c9e48002d29b662fb11b2ba58177f04268ba5.zip |
Move all implementation classes into the impl package
Diffstat (limited to 'src/main/resources/fabric.mod.json')
-rw-r--r-- | src/main/resources/fabric.mod.json | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index b540edf..1030297 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -19,8 +19,8 @@ "environment": "*", "entrypoints": { "main": ["io.github.cottonmc.cotton.gui.impl.LibGuiCommon"], - "client": ["io.github.cottonmc.cotton.gui.client.LibGuiClient"], - "modmenu": ["io.github.cottonmc.cotton.gui.client.modmenu.ModMenuSupport"] + "client": ["io.github.cottonmc.cotton.gui.impl.client.LibGuiClient"], + "modmenu": ["io.github.cottonmc.cotton.gui.impl.modmenu.ModMenuSupport"] }, "mixins": [ "mixins.libgui.accessors.json" |