com.uwsoft.editor.renderer.script.IScript Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of overlap2d-runtime-libgdx Show documentation
Show all versions of overlap2d-runtime-libgdx Show documentation
overlap2d-runtime-libgdx provides functionality to load, manipulate and render scenes generated by Overlap2D.
package com.uwsoft.editor.renderer.script;
import com.uwsoft.editor.renderer.actor.CompositeItem;
public interface IScript {
public void init(CompositeItem item);
public void dispose();
public void act(float delta);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy