mirror of
https://github.com/ME1312/SubServers-2.git
synced 2024-11-16 15:25:25 +01:00
16 lines
243 B
Java
16 lines
243 B
Java
package net.ME1312.SubServers.Bungee.Library;
|
|
|
|
import org.json.JSONObject;
|
|
|
|
/**
|
|
* JSON Callback Class
|
|
*/
|
|
public interface JSONCallback {
|
|
/**
|
|
* Run the Callback
|
|
*
|
|
* @param json JSON
|
|
*/
|
|
void run(JSONObject json);
|
|
}
|