1
0
mirror of https://github.com/Rogiel/l2jserver2 synced 2025-12-08 16:33:07 +00:00

Scripting engine

Change-Id: I5d6df6fd0d76cc07fd2631b5589f5200d9e50000
This commit is contained in:
rogiel
2011-04-30 09:31:32 -03:00
parent 8984654ed5
commit d76e80f9a0
55 changed files with 2953 additions and 146 deletions

View File

@@ -0,0 +1,24 @@
package script;
import com.l2jserver.model.world.capability.Scriptable;
import com.l2jserver.service.game.scripting.Script;
public class DummyScript implements Script<Scriptable> {
@Override
public void load(Scriptable object) {
}
@Override
public void run() {
}
@Override
public void unload() {
}
@Override
public Scriptable getObject() {
return null;
}
}