grunk/src/world/mechanics/signal_node.gd

11 lines
229 B
GDScript3
Raw Normal View History

2025-03-15 19:00:37 -06:00
class_name SignalNode extends GunkNode
## Specialized gunk node capable of handling standardized signals
func trigger() -> void:
pass # Implemented by derived type
func pulse() -> void:
pass # Implemented by derived type