Back to project page Froggy.
The source code is released under:
GNU General Public License
If you think the Android project Froggy 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.mopgames.GameObjects; // ww w .j a v a 2 s . c o m public class MenuItem extends Scrollable { public MenuItem(float x, float y, int width, int height, float scrollSpeed) { super(x, y, width, height, 0); } public void onRestart(float x) { position.x = x; velocity.x = 0; } public void onRun(float scrollSpeed) { velocity.x = scrollSpeed; } }