13 lines
238 B
GDScript3
Raw Normal View History

2024-12-27 21:00:07 +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)