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

16 lines
474 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 IStringReactor {
/**
* Called when a text gets received after typing it in in the GUI
2015-10-02 16:48:01 +02:00
*
* @param text The text that was sent
* @param textID The ID (meaning the place in the GUI) of the text typed in
* @param player The Player doing it
*/
void onTextReceived(String text, int textID, EntityPlayer player);
}