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

package com.hypixel.hytale.builtin.path.waypoint;

public class RelativeWaypointDefinition
{
    protected final float rotation;
    protected final double distance;
    
    public RelativeWaypointDefinition(final float rotation, final double distance) {
        this.rotation = rotation;
        this.distance = distance;
    }
    
    public float getRotation() {
        return this.rotation;
    }
    
    public double getDistance() {
        return this.distance;
    }
}
