// 
// Decompiled by Procyon v0.6.0
// 

package com.hypixel.hytale.server.core.universe.world.path;

import java.util.List;
import javax.annotation.Nullable;
import java.util.UUID;

public interface IPath<Waypoint extends IPathWaypoint>
{
    @Nullable
    UUID getId();
    
    @Nullable
    String getName();
    
    List<Waypoint> getPathWaypoints();
    
    int length();
    
    Waypoint get(final int p0);
}
