aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea/firmament/gui/profileviewer/ProfilePage.kt
blob: 5f8d0a3f6b57df19177ffd8893c8e6b0631fbae9 (plain)
1
2
3
4
5
6
7
8
9
10
11
package moe.nea.firmament.gui.profileviewer

import io.github.cottonmc.cotton.gui.widget.WWidget
import io.github.cottonmc.cotton.gui.widget.icon.Icon
import net.minecraft.text.Text

interface ProfilePage {
    fun getElements(profileViewer: ProfileViewer): WWidget
    val icon: Icon
    val text: Text
}