All Downloads are FREE. Search and download functionalities are using the official Maven repository.

games.rednblack.editor.renderer.scripts.IActorScript Maven / Gradle / Ivy

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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy