AI branches initial commit

This commit is contained in:
2025-02-12 20:04:35 -06:00
parent 6961b186a9
commit 2fa9030682
5 changed files with 384 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
package engine.mobileAI.behaviours;
import engine.objects.Mob;
public class PetAI {
public static void run(Mob pet){
//1. check for combat
//2. check for distance from player
//3. follow player
//4. chase combat target
}
}