/* * Copyright 2015 MovingBlocks * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.terasology.input; public final class ControllerId { public static final int NONE = -1; public static final int ZERO = 0; public static final int ONE = 1; public static final int TWO = 2; public static final int THREE = 3; public static final int FOUR = 4; public static final int FIVE = 5; public static final int SIX = 6; public static final int SEVEN = 7; public static final int EIGHT = 8; public static final int NINE = 9; public static final int TEN = 10; public static final int ELEVEN = 11; public static final int X_AXIS = 100; public static final int Y_AXIS = 200; public static final int Z_AXIS = 300; public static final int RX_AXIS = 500; public static final int RY_AXIS = 600; public static final int POVX_AXIS = 800; public static final int POVY_AXIS = 900; private ControllerId() { } }