com.harium.etyl.core.loadstack.LoadAction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of etyl-gdx Show documentation
Show all versions of etyl-gdx Show documentation
An Etyl's backend based on libgdx
The newest version!
package com.harium.etyl.core.loadstack;
import com.harium.etyl.layer.StaticLayer;
/**
* Created by death on 6/23/17.
*/
public abstract class LoadAction {
protected StaticLayer layer;
protected LoadActionType type;
public LoadAction(StaticLayer layer, LoadActionType type) {
this.layer = layer;
this.type = type;
}
public abstract void apply();
}