games.rednblack.editor.renderer.systems.action.logic.DelegateAction 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.logic;
import games.rednblack.editor.renderer.systems.action.data.DelegateData;
/**
* Created by ZeppLondon on 10/15/2015.
*/
public abstract class DelegateAction extends ActionLogic {
@Override
public boolean act(float delta, int entity, T actionData) {
return delegate(delta, entity, actionData);
}
abstract protected boolean delegate (float delta, int entity, T actionData);
}