games.rednblack.editor.renderer.scripts.IActorScript 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.scripts;
import games.rednblack.editor.renderer.scene2d.CompositeActor;
public interface IActorScript {
public void init(CompositeActor entity);
public void act(float delta);
public void dispose();
}