Back to project page ninja-trials.
The source code is released under:
Apache License
If you think the Android project ninja-trials 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.madgear.ninjatrials.sequences; // TODO Maybe this should be an Abstract class instead of an Interface :/ public interface Sequence { public void goToNextSubSequence(); public boolean isInLastSubSequence(); public void finishSequence(); public void stopMusicAndSFX(); }