Added the pathfinding module

This commit is contained in:
douwe
2025-09-01 20:22:54 +02:00
parent a232425980
commit a58cfe74a1
23 changed files with 183 additions and 63 deletions

View File

@@ -2,11 +2,14 @@ class_name Module extends Node
@onready var cpu := get_parent() as CPU
func set_registers(index:int)->int:
func get_register_reservation_size()->int:
return 0
func early_tick()->void:
func set_reserved_registers(index:int)->void:
pass
func get_register_types()->Dictionary[int, String]:
return {}
func late_tick()->void:
pass