Renderer/src/main/java/electrosphere/entity/btree/BehaviorTree.java
2024-03-21 20:37:47 -04:00

15 lines
276 B
Java

package electrosphere.entity.btree;
/**
* A behavior tree
*/
public interface BehaviorTree {
/**
* Simulates the behavior tree
* @param deltaTime The time since the last call to the simulate function
*/
public void simulate(float deltaTime);
}