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

net.mostlyoriginal.api.component.graphics.Renderable Maven / Gradle / Ivy

There is a newer version: 2.5.0
Show newest version
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