19 lines
501 B
Java
19 lines
501 B
Java
package com.hypixel.hytale.codec.schema.metadata.ui;
|
|
|
|
import com.hypixel.hytale.codec.schema.config.Schema;
|
|
import com.hypixel.hytale.codec.schema.metadata.Metadata;
|
|
import javax.annotation.Nonnull;
|
|
|
|
public class UICreateButtons implements Metadata {
|
|
private final UIButton[] buttons;
|
|
|
|
public UICreateButtons(UIButton... buttons) {
|
|
this.buttons = buttons;
|
|
}
|
|
|
|
@Override
|
|
public void modify(@Nonnull Schema schema) {
|
|
schema.getHytale().setUiCreateButtons(this.buttons);
|
|
}
|
|
}
|