Back to project page osu-taste-portable.
The source code is released under:
Apache License
If you think the Android project osu-taste-portable 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.dgsrz.osuTaste.beatmap; /*from w w w .j a va2 s . c o m*/ /** * Created by: dgsrz * Date: 2014-01-31 15:44 */ public class InheritedTimingPoint extends TimingPoint { private TimingPoint parent; public InheritedTimingPoint() { } public InheritedTimingPoint(TimingPoint timingPoint) { this.parent = timingPoint; setInherited(true); } @Override public float getBeatTime() { return parent.getBeatTime() * getMultiplier(); } @Override public float getMultiplier() { return -(super.getBeatTime() / 100); } }