begin adding variant for STRAIGHT_BAT enemy

This commit is contained in:
2025-02-11 18:05:44 +00:00
parent 534852c8bf
commit 3202c67f47
4 changed files with 96 additions and 57 deletions

View File

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