aboutsummaryrefslogtreecommitdiff
path: root/engine/src/android/com/jme3/input/android/AndroidTouchInputListener.java
blob: 34e4592b7c965edd45bd9d9d0c373f131a7462b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.jme3.input.android;

import android.view.KeyEvent;
import android.view.MotionEvent;
import com.jme3.input.RawInputListener;
import com.jme3.input.event.TouchEvent;

/**
 * AndroidTouchInputListener is an inputlistener interface which defines callbacks/events for android touch screens
 * For use with class AndroidInput
 * @author larynx
 *
 */
public interface AndroidTouchInputListener extends RawInputListener
{
    public void onTouchEvent(TouchEvent evt);
    public void onMotionEvent(MotionEvent evt);
    public void onAndroidKeyEvent(KeyEvent evt);
}