18 lines
421 B
Kotlin
18 lines
421 B
Kotlin
/*
|
|
* SPDX-FileCopyrightText: 2023 Linnea Gräf <nea@nea.moe>
|
|
*
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*/
|
|
|
|
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
|
|
}
|