diff options
author | nea <nea@nea.moe> | 2023-06-03 14:56:10 +0200 |
---|---|---|
committer | nea <nea@nea.moe> | 2023-06-03 14:56:10 +0200 |
commit | b3237fe53d4ff838984d65954772cf77588644ae (patch) | |
tree | dcc6c6245a60a11e84a004b0d0123e7568e54a21 /src/main | |
parent | 9477a32ad577fc242fd83059826706fcea8c6f31 (diff) | |
download | firmament-b3237fe53d4ff838984d65954772cf77588644ae.tar.gz firmament-b3237fe53d4ff838984d65954772cf77588644ae.tar.bz2 firmament-b3237fe53d4ff838984d65954772cf77588644ae.zip |
Add auto hotswap installer
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/kotlin/moe/nea/firmament/gui/profileviewer/PetsPage.kt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/kotlin/moe/nea/firmament/gui/profileviewer/PetsPage.kt b/src/main/kotlin/moe/nea/firmament/gui/profileviewer/PetsPage.kt index 0c3e5c8..bf412b9 100644 --- a/src/main/kotlin/moe/nea/firmament/gui/profileviewer/PetsPage.kt +++ b/src/main/kotlin/moe/nea/firmament/gui/profileviewer/PetsPage.kt @@ -4,9 +4,9 @@ import io.github.cottonmc.cotton.gui.client.BackgroundPainter import io.github.cottonmc.cotton.gui.widget.TooltipBuilder import io.github.cottonmc.cotton.gui.widget.WGridPanel import io.github.cottonmc.cotton.gui.widget.WItem -import io.github.cottonmc.cotton.gui.widget.WScrollPanel import io.github.cottonmc.cotton.gui.widget.WText import io.github.cottonmc.cotton.gui.widget.WWidget +import io.github.cottonmc.cotton.gui.widget.data.InputResult import io.github.cottonmc.cotton.gui.widget.data.Insets import io.github.cottonmc.cotton.gui.widget.icon.Icon import io.github.cottonmc.cotton.gui.widget.icon.ItemIcon @@ -14,9 +14,9 @@ import net.minecraft.client.item.TooltipContext import net.minecraft.client.util.math.MatrixStack import net.minecraft.item.Items import net.minecraft.text.Text -import moe.nea.firmament.gui.WFixedPanel import moe.nea.firmament.gui.WTightScrollPanel import moe.nea.firmament.rei.SBItemStack +import moe.nea.firmament.util.MC object PetsPage : ProfilePage { override fun getElements(profileViewer: ProfileViewer): WWidget { |