Fix formatting

This commit is contained in:
Christian 2012-08-22 18:00:38 -04:00
parent 8f6883da8e
commit 908a57f3c4
1 changed files with 4 additions and 1 deletions

View File

@ -23,7 +23,10 @@ import net.minecraft.src.EntityPlayer;
public interface IPlayerTracker
{
void onPlayerLogin(EntityPlayer player);
void onPlayerLogout(EntityPlayer player);
void onPlayerChangedDimension(EntityPlayer player);
void onPlayerRespawn(EntityPlayer player);
void onPlayerRespawn(EntityPlayer player);
}