start implementing patches to follow player (basic; shouldn't use path finding like Dijkstra's algorithm)

This commit is contained in:
2025-01-17 11:43:49 +00:00
parent a05f211428
commit 67a4ad5664
4 changed files with 64 additions and 16 deletions

View File

@@ -1,6 +1,7 @@
signature ENEMY_VARIANTS =
sig
datatype t = PATROL_SLIME
datatype t = PATROL_SLIME | FOLLOW_SLIME
end
structure EnemyVariants: ENEMY_VARIANTS = struct datatype t = PATROL_SLIME end
structure EnemyVariants: ENEMY_VARIANTS =
struct datatype t = PATROL_SLIME | FOLLOW_SLIME end