001package net.minecraft.world;
002
003import net.minecraft.util.ChunkCoordinates;
004
005public class PortalPosition extends ChunkCoordinates
006{
007    /** The worldtime at which this PortalPosition was last verified */
008    public long lastUpdateTime;
009
010    /** The teleporter to which this PortalPosition applies */
011    final Teleporter teleporterInstance;
012
013    public PortalPosition(Teleporter par1Teleporter, int par2, int par3, int par4, long par5)
014    {
015        super(par2, par3, par4);
016        this.teleporterInstance = par1Teleporter;
017        this.lastUpdateTime = par5;
018    }
019}