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

package com.hypixel.hytale.server.npc.sensorinfo;

import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import com.hypixel.hytale.server.core.universe.world.path.IPathWaypoint;
import com.hypixel.hytale.server.core.universe.world.path.IPath;

public interface IPathProvider extends ExtraInfoProvider
{
    boolean hasPath();
    
    @Nullable
    IPath<? extends IPathWaypoint> getPath();
    
    void clear();
    
    @Nonnull
    default Class<IPathProvider> getType() {
        return IPathProvider.class;
    }
}
