Back to project page physics.
The source code is released under:
GNU General Public License
If you think the Android project physics 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 com.nuaavee.physics.core; /* w w w . jav a 2 s . c o m*/ import android.graphics.Canvas; import android.view.MotionEvent; /** * @author nuaavee */ public interface Shell { void activate(); void draw(Canvas canvas); /** * Handles touch events. * @param event Event to be handled. * @return <code>true</code> if the event was handled, <code>false</code> otherwise. */ boolean handleTouchEvent(MotionEvent event); }