Files
sml-projects/fcore/level/enemy/enemy-pair.sml

12 lines
205 B
Standard ML
Raw Normal View History

structure EnemyPair =
struct
type key = int
type value = EnemyType.enemy
fun l (a: int, b: int) = a < b
fun eq (a: int, b: int) = a = b
fun g (a: int, b: int) = a > b
val maxNodeSize = 8
end