Add UNKNOWN and SPACE key

This commit is contained in:
JeremyStar™ 2024-07-25 04:13:44 +02:00
parent eea7fce13c
commit f5af9b34a0
Signed by: JeremyStarTM
GPG key ID: E366BAEF67E4704D

View file

@ -27,6 +27,13 @@ package de.staropensource.sosengine.graphics.types.input;
*/
@SuppressWarnings({ "unused" })
public enum Key {
/**
* An unknown key.
*
* @since v1-alpha2
*/
UNKNOWN,
/**
* The left mouse button.
*
@ -732,6 +739,12 @@ public enum Key {
* @since v1-alpha2
*/
SLASH,
/**
* The {@code ENTER} key.
*
* @since v1-alpha2
*/
SPACE,
/**
* The {@code TAB} key.
*