mirror of
https://github.com/Rogiel/l2jserver2
synced 2025-12-07 16:03:10 +00:00
First commit
Change-Id: I4d273faba7286288d2b9a214c87c39a76724d787
This commit is contained in:
24
data/scripts/com/l2jserver/script/DummyScript.java
Normal file
24
data/scripts/com/l2jserver/script/DummyScript.java
Normal file
@@ -0,0 +1,24 @@
|
||||
package com.l2jserver.script;
|
||||
|
||||
import com.l2jserver.model.world.capability.Scriptable;
|
||||
import com.l2jserver.service.game.script.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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user