mirror of
https://github.com/simon987/Much-Assembly-Required.git
synced 2025-12-13 22:59:02 +00:00
Initial commit
This commit is contained in:
3
Plugin Kiln/plugin.properties
Normal file
3
Plugin Kiln/plugin.properties
Normal file
@@ -0,0 +1,3 @@
|
||||
classpath=net.simon987.kilnplugin.KilnPlugin
|
||||
name=Kiln Plugin
|
||||
version=1.0
|
||||
21
Plugin Kiln/src/net/simon987/kilnplugin/KilnPlugin.java
Normal file
21
Plugin Kiln/src/net/simon987/kilnplugin/KilnPlugin.java
Normal file
@@ -0,0 +1,21 @@
|
||||
package net.simon987.kilnplugin;
|
||||
|
||||
import net.simon987.server.game.GameObject;
|
||||
import net.simon987.server.game.GameObjectDeserializer;
|
||||
import net.simon987.server.plugin.ServerPlugin;
|
||||
import org.json.simple.JSONObject;
|
||||
|
||||
public class KilnPlugin extends ServerPlugin implements GameObjectDeserializer {
|
||||
|
||||
|
||||
|
||||
@Override
|
||||
public void init() {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public GameObject deserializeObject(JSONObject object) {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user