1
0
mirror of https://github.com/Rogiel/l2jserver2 synced 2026-02-01 07:22:51 +00:00

Change-Id: Ifa069a09d1b603781a2c9255d89b77cd6f25a359

This commit is contained in:
rogiel
2011-04-28 22:53:11 -03:00
parent 05e8355aaf
commit 54ef3c7fa2
38 changed files with 962 additions and 99 deletions

View File

@@ -20,4 +20,10 @@ public class PlayerSpawnEvent implements PlayerEvent, SpawnEvent {
public Player getPlayer() {
return player;
}
@Override
public void dispatch() {
if(player != null)
player.dispatch(this);
}
}

View File

@@ -0,0 +1,6 @@
package com.l2jserver.model.world.player;
import com.l2jserver.model.world.event.WorldEvent;
public interface TestEvent extends WorldEvent {
}