12 lines
159 B
GDScript
12 lines
159 B
GDScript
extends Command
|
|
|
|
class_name PassCommand
|
|
|
|
func _init():
|
|
commandLabel = "Pass"
|
|
|
|
|
|
func execute():
|
|
print("Player passed.")
|
|
COMMAND_PROCESSED.emit(commandLabel)
|