Core/src/main/java/eu/univento/core/api/gui/hologram/components/PlayerGUITextBoxComponent.java

40 lines
841 B
Java

/*
* Copyright (c) 2017 univento.eu - All rights reserved
* You are not allowed to use, distribute or modify this code
*/
package eu.univento.core.api.gui.hologram.components;
import eu.univento.core.api.player.CustomPlayer;
import org.bukkit.Location;
/**
* @author joethei
* @version 0.1
*/
public class PlayerGUITextBoxComponent extends PlayerGUIValueBoxComponent implements IValueHolder{
public PlayerGUITextBoxComponent(CustomPlayer player, GUIComponent component) {
super(player, component);
}
@Override
public String getValue() {
return null;
}
@Override
public void updateComponentLines() {
}
@Override
public void spawnEntities(Location location, boolean param) {
}
@Override
public void updateLocation(Location location, boolean param) {
}
}