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

Change-Id: I3d4cd283cff0f3ea0202c4fe9b60ec5ed0b42ebd

This commit is contained in:
rogiel
2011-04-29 02:04:54 -03:00
parent 2749539f87
commit 4b9252c98f
30 changed files with 351 additions and 64 deletions

View File

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

View File

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