Back to project page LucyTheMoocher.
The source code is released under:
MIT License
If you think the Android project LucyTheMoocher 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.lucythemoocher.controls; /*from w w w .j a va2 s . c om*/ public interface Controllable { public void moveStop(); public void moveFastLeft(); public void moveRight(); public void moveLeft(); public void moveFastRight(); public void moveUp(); public void moveDown(); }