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

25 lines
620 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;
/**
* @author joethei
* @version 0.1
*/
public abstract class PlayerGUIValueBoxComponent extends PlayerGUIComponent{
public PlayerGUIValueBoxComponent(CustomPlayer player, GUIComponent component) {
super(player, component);
}
public void focusComponent(boolean focus) {
if((component.getLabel() != null) && (!component.isShowLabel())) {
}
}
}