blob: 45972983a5a6105413a51915db109b822db43c59 [file] [log] [blame] [raw]
package universalelectricity.prefab.network;
import universalelectricity.prefab.network.ConnectionHandler.ConnectionType;
public interface ISimpleConnectionHandler
{
/**
* Called when a player logs in. Use this to reset some tile entities variables if you need to.
*
* @param player
*/
public void handelConnection(ConnectionType type, Object... data);
}