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.TweenAccessors; // w w w . java 2 s . c om public class Value { private float val = 1; public float getValue() { return val; } public void setValue(float newVal) { val = newVal; } }