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

package com.hypixel.hytale.protocol;

import com.hypixel.hytale.protocol.io.ProtocolException;

public enum MouseInputType
{
    LookAtTarget(0), 
    LookAtTargetBlock(1), 
    LookAtTargetEntity(2), 
    LookAtPlane(3);
    
    public static final MouseInputType[] VALUES;
    private final int value;
    
    private MouseInputType(final int value) {
        this.value = value;
    }
    
    public int getValue() {
        return this.value;
    }
    
    public static MouseInputType fromValue(final int value) {
        if (value >= 0 && value < MouseInputType.VALUES.length) {
            return MouseInputType.VALUES[value];
        }
        throw ProtocolException.invalidEnumValue("MouseInputType", value);
    }
    
    static {
        VALUES = values();
    }
}
