1 // -*- Mode: Java; indent-tabs-mode: t; tab-width: 4 -*-
2 // ---------------------------------------------------------------------------
4 // Copyright (C) Stephanie Gawroriski <xer@multiphasicapps.net>
5 // ---------------------------------------------------------------------------
6 // SquirrelJME is under the GNU General Public License v3+, or later.
7 // See license.mkd for licensing and copyright information.
8 // ---------------------------------------------------------------------------
10 package cc
.squirreljme
.jvm
.mle
.constants
;
12 import cc
.squirreljme
.runtime
.cldc
.annotation
.Exported
;
15 * Bit field for input types that are supported.
20 public interface UIInputFlag
22 /** Has gamepad input. */
27 /** Has keyboard input. */
32 /** Has pointer input. */
37 /** Has pointer motion. */
42 /** All input types. */
45 UIInputFlag
.GAMEPAD
| UIInputFlag
.KEYBOARD
|
46 UIInputFlag
.POINTER
| UIInputFlag
.POINTER_MOTION
;