net.mostlyoriginal.api.component.graphics.Renderable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of contrib-jam Show documentation
Show all versions of contrib-jam Show documentation
Jam bundle of systems and components!
package net.mostlyoriginal.api.component.graphics;
import com.artemis.Component;
/**
* Indicate this entity is renderable.
*
* Combine with specialized renderables, like Anim or Label.
*
* @author Daan van Yperen
* @see Anim
*/
public class Renderable extends Component {
/** target layer, higher is in front, lower is behind. */
public int layer = 0;
public Renderable() {
}
public Renderable(int layer) {
this.layer = layer;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy