legacy-of-the-ancient-questor/scripts/game/commands/CommandDispatcher.gd

17 lines
334 B
GDScript

extends Node
# Command Processor Signals
signal PROCESS_COMMAND(command)
signal WAIT_FOR_COMMAND
signal PAUSE_PROCESSOR
# Game Signals
signal PLAYER_MOVE(direction)
# Message Console Signals
signal DISPLAY_MESSAGE(message)
signal DISPLAY_COMMAND_PROMPT
signal DISPLAY_CLEAR
signal LOAD_MAP(currentMap, newMap, spawnpoint, facing)