dev.aurelium.slate.component.MenuComponent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of slate Show documentation
Show all versions of slate Show documentation
API for building user-configurable GUI menus
The newest version!
package dev.aurelium.slate.component;
import dev.aurelium.slate.lore.LoreLine;
import org.jetbrains.annotations.Nullable;
import java.util.List;
public record MenuComponent(Class> contextClass, List lore) {
@Override
@Nullable
public Class> contextClass() {
return contextClass;
}
}