mirror of
https://github.com/processing/processing4.git
synced 2026-02-18 21:05:36 +01:00
sync events folder over to Android
This commit is contained in:
@@ -23,18 +23,9 @@
|
||||
package processing.event;
|
||||
|
||||
|
||||
public class TouchEvent {
|
||||
Object nativeObject;
|
||||
public class TouchEvent extends Event {
|
||||
|
||||
float x, y;
|
||||
|
||||
|
||||
public TouchEvent(Object nativeObject) {
|
||||
this.nativeObject = nativeObject;
|
||||
}
|
||||
|
||||
|
||||
public Object getNative() {
|
||||
return nativeObject;
|
||||
public TouchEvent(Object nativeObject, long millis, int action, int modifiers) {
|
||||
super(nativeObject, millis, action, modifiers);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user