Add UNKNOWN and SPACE key
This commit is contained in:
parent
eea7fce13c
commit
f5af9b34a0
1 changed files with 13 additions and 0 deletions
|
@ -27,6 +27,13 @@ package de.staropensource.sosengine.graphics.types.input;
|
||||||
*/
|
*/
|
||||||
@SuppressWarnings({ "unused" })
|
@SuppressWarnings({ "unused" })
|
||||||
public enum Key {
|
public enum Key {
|
||||||
|
/**
|
||||||
|
* An unknown key.
|
||||||
|
*
|
||||||
|
* @since v1-alpha2
|
||||||
|
*/
|
||||||
|
UNKNOWN,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The left mouse button.
|
* The left mouse button.
|
||||||
*
|
*
|
||||||
|
@ -732,6 +739,12 @@ public enum Key {
|
||||||
* @since v1-alpha2
|
* @since v1-alpha2
|
||||||
*/
|
*/
|
||||||
SLASH,
|
SLASH,
|
||||||
|
/**
|
||||||
|
* The {@code ENTER} key.
|
||||||
|
*
|
||||||
|
* @since v1-alpha2
|
||||||
|
*/
|
||||||
|
SPACE,
|
||||||
/**
|
/**
|
||||||
* The {@code TAB} key.
|
* The {@code TAB} key.
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in a new issue