Renderer/src/main/java/electrosphere/server/ai/services/AIService.java
austin 61c5599265
All checks were successful
studiorailgun/Renderer/pipeline/head This commit looks good
true behavior trees
2024-08-15 09:52:32 -04:00

14 lines
169 B
Java

package electrosphere.server.ai.services;
/**
* A service
*/
public interface AIService {
/**
* Executes the service
*/
public void exec();
}