Make it so mapping files are used and then reapplied.
[SquirrelJME.git] / modules / cldc-compact / src / main / java / cc / squirreljme / jvm / mle / constants / UIMouseButton.java
blobbb2c2e11dc03a7f38258fce147a2c1689d52f3da
1 // -*- Mode: Java; indent-tabs-mode: t; tab-width: 4 -*-
2 // ---------------------------------------------------------------------------
3 // SquirrelJME
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;
14 /**
15 * Represents the mouse button that was used.
17 * @since 2020/07/19
19 @Exported
20 public interface UIMouseButton
22 /** Primary mouse button. */
23 @Exported
24 byte PRIMARY_BUTTON =
27 /** Secondary mouse button. */
28 @Exported
29 byte SECONDARY_BUTTON =
32 /** The number of buttons. */
33 @Exported
34 byte NUM_BUTTONS =