net.mostlyoriginal.api.component.graphics.Animation 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!
The newest version!
package net.mostlyoriginal.api.component.graphics;
import net.mostlyoriginal.api.component.common.ExtendedComponent;
/**
* @author Daan van Yperen
*/
public class Animation extends ExtendedComponent {
public String id;
public float age;
@Override
protected void reset() {
id = null;
}
@Override
public void set(Animation sprite) {
this.id = sprite.id;
}
public void set(String id) {
this.id=id;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy