mirror of
https://github.com/processing/processing4.git
synced 2026-02-13 10:30:44 +01:00
major work to clean up event handling
This commit is contained in:
@@ -24,9 +24,9 @@ package processing.event;
|
||||
|
||||
|
||||
public class KeyEvent extends Event {
|
||||
static public final int PRESSED = 1;
|
||||
static public final int RELEASED = 2;
|
||||
static public final int TYPED = 3;
|
||||
static public final int PRESS = 1;
|
||||
static public final int RELEASE = 2;
|
||||
static public final int TYPE = 3;
|
||||
|
||||
char key;
|
||||
int keyCode;
|
||||
|
||||
Reference in New Issue
Block a user