1
0
mirror of https://github.com/Rogiel/l2jserver2 synced 2026-02-01 15:32:48 +00:00

Change-Id: I375a10c9d7ce56df457a998e5cb9d02465865973

This commit is contained in:
rogiel
2011-04-29 20:17:57 -03:00
parent 0662150229
commit f1d8e6588f
16 changed files with 825 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
package com.l2jserver.model.world.player;
import com.l2jserver.model.world.Player;
import com.l2jserver.util.Coordinate;
public class PlayerTeleportEvent extends PlayerSpawnEvent {
public PlayerTeleportEvent(Player player, Coordinate coordinate) {
super(player, coordinate);
}
}