blob: 09414ae38b95a0781d7969af2c2025c1dab71e67 [file] [log] [blame] [raw]
package ic2.api.network;
/**
* Allows a tile entity to receive field sync updates received from the server.
*/
public interface INetworkUpdateListener {
/**
* Called when a field is synchronized.
*
* @param field field synchronized
*/
void onNetworkUpdate(String field);
}