2025-01-11 00:25:52 +01:00

13 lines
238 B
GDScript

@tool
extends EditorPlugin
const PLUGIN_NAME = "GDRx"
func _enter_tree() -> void:
add_autoload_singleton(PLUGIN_NAME, "res://addons/reactivex/__gdrxsingleton__.gd")
func _exit_tree() -> void:
remove_autoload_singleton(PLUGIN_NAME)