games.rednblack.editor.renderer.systems.action.data.SequenceData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of runtime-libgdx Show documentation
Show all versions of runtime-libgdx Show documentation
HyperLap2D libGDX runtime to render exported scenes
The newest version!
package games.rednblack.editor.renderer.systems.action.data;
/**
* Created by ZeppLondon on 10/23/15.
*/
public class SequenceData extends ParallelData {
public int index;
@Override
public void restart() {
super.restart();
index = 0;
}
@Override
public void reset() {
super.reset();
index = 0;
}
}