mirror of
https://github.com/godotengine/godot-cpp.git
synced 2025-12-31 01:48:45 +03:00
6 lines
121 B
GDScript
6 lines
121 B
GDScript
extends Example
|
|
|
|
func _do_something_virtual(p_name, p_value):
|
|
custom_signal.emit(p_name, p_value)
|
|
return "Implemented"
|