ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/common/network/gui/INumberReactor.java
2020-09-09 15:49:01 +01:00

16 lines
480 B
Java

package de.ellpeck.actuallyadditions.common.network.gui;
import net.minecraft.entity.player.EntityPlayer;
public interface INumberReactor {
/**
* Called when a Number gets received after typing it in in the GUI
*
* @param number The number that was sent
* @param id The ID (meaning the place in the GUI) of the number typed in
* @param player The Player doing it
*/
void onNumberReceived(double number, int id, EntityPlayer player);
}