13 lines
238 B
GDScript3
Raw Permalink Normal View History

2025-01-11 00:25:52 +01:00
@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)