Core/src/main/java/eu/univento/core/api/gui/Action.java

18 lines
323 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;
import eu.univento.core.api.player.CustomPlayer;
/**
* @author joethei
* @version 1.0
*/
public interface Action {
void onClick(CustomPlayer player);
}