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

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

import java.util.function.Supplier;

public enum NavState implements Supplier<String>
{
    INIT("Doing nothing"), 
    PROGRESSING("Moving or computing a path"), 
    BLOCKED("Can't advance any further"), 
    DEFER("Delaying/unable to advance"), 
    AT_GOAL("Reached target"), 
    ABORTED("Search stopped but target not reached");
    
    private final String description;
    
    private NavState(final String description) {
        this.description = description;
    }
    
    @Override
    public String get() {
        return this.description;
    }
}
