1
0
mirror of https://github.com/Rogiel/l2jserver2 synced 2025-12-09 08:52:51 +00:00

Change-Id: If81bd9f1cf2db8fd6a38752f6a36648e5e4423dc

This commit is contained in:
rogiel
2011-04-29 12:32:14 -03:00
parent 4b9252c98f
commit 43403d9a1e
10 changed files with 67 additions and 35 deletions

View File

@@ -0,0 +1,8 @@
package com.l2jserver.routines;
public class GameServerInitializationRoutine implements Routine<Boolean> {
@Override
public Boolean call() {
return false;
}
}

View File

@@ -1,9 +0,0 @@
package com.l2jserver.routines;
public class InitializationRoutine implements Routine {
@Override
public void run() {
// TODO Auto-generated method stub
}
}

View File

@@ -1,4 +0,0 @@
package com.l2jserver.routines;
public interface Routine extends Runnable {
}