Files
gamedev-the-steward/simulation/commands/ActionCommandService.gd
T
2026-08-12 20:06:51 +02:00

11 lines
328 B
GDScript

class_name ActionCommandService
extends RefCounted
signal command_resolved(result: ActionResult)
# Implementations must resolve the transient target handle and revalidate every
# precondition. An earlier ActionOffer never grants authority by itself.
func submit_command(_command: ActionCommand) -> ActionResult:
return null