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

package com.hypixel.hytale.protocol;

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

public enum MountController
{
    Minecart(0), 
    BlockMount(1);
    
    public static final MountController[] VALUES;
    private final int value;
    
    private MountController(final int value) {
        this.value = value;
    }
    
    public int getValue() {
        return this.value;
    }
    
    public static MountController fromValue(final int value) {
        if (value >= 0 && value < MountController.VALUES.length) {
            return MountController.VALUES[value];
        }
        throw ProtocolException.invalidEnumValue("MountController", value);
    }
    
    static {
        VALUES = values();
    }
}
