ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/common/network/gui/IButtonReactor.java

16 lines
417 B
Java
Raw Normal View History

2020-09-09 16:49:01 +02:00
package de.ellpeck.actuallyadditions.common.network.gui;
import net.minecraft.entity.player.EntityPlayer;
2019-05-02 09:10:29 +02:00
public interface IButtonReactor {
/**
* Called when a Button in a GUI is pressed
* Gets called on the Server, sent from the Client
2015-10-02 16:48:01 +02:00
*
* @param buttonID The button's ID
2015-10-02 16:48:01 +02:00
* @param player The Player pressing it
*/
void onButtonPressed(int buttonID, EntityPlayer player);
}