net.mostlyoriginal.api.component.interact.Focus 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.interact;
import com.artemis.Component;
import com.artemis.annotations.EntityId;
/**
* Focus of entity (for example, focus for aggression).
*
* @author Daan van Yperen
*/
public class Focus extends Component {
@EntityId
public int entity;
public Focus(int entity) {
this.entity = entity;
}
public Focus() {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy