1
0
mirror of https://github.com/Rogiel/l2jserver2 synced 2025-12-11 17:52:52 +00:00

Teleporter implementation

Signed-off-by: Rogiel <rogiel@rogiel.com>
This commit is contained in:
2011-05-22 02:04:35 -03:00
parent b3ff0795ec
commit 87ce7bb987
31 changed files with 900 additions and 31 deletions

View File

@@ -16,6 +16,7 @@
*/
package com.l2jserver.service.admin;
import com.l2jserver.model.world.L2Character;
import com.l2jserver.service.Service;
/**
@@ -24,5 +25,9 @@ import com.l2jserver.service.Service;
* @author <a href="http://www.rogiel.com">Rogiel</a>
*/
public interface GMService extends Service {
void command(L2Character character, String command, String... args);
public interface GMCommand {
void gm(L2Character character, String... args);
}
}