Back to project page picturepuzzle.
The source code is released under:
GNU General Public License
If you think the Android project picturepuzzle listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package me.crr.interfaces; /*from w ww .ja v a2 s .c o m*/ import android.view.KeyEvent; import android.view.MotionEvent; public interface InputManagerReceiver { public void onTouch(MotionEvent e); public void onKeyPressed(KeyEvent e); }