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

games.rednblack.editor.renderer.systems.action.logic.DelegateAction Maven / Gradle / Ivy

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy