blob: 1eb1d3c73eb2c53ad69128956887c1dd56e60d60 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
@tool
extends EditorPlugin
func _enter_tree() -> void:
add_autoload_singleton("Keychain", "res://addons/keychain/Keychain.gd")
func _exit_tree() -> void:
remove_autoload_singleton("Keychain")
|