RingOfRaces/addons/thejustinwalsh.castledb/thejustinwalsh.castledb_importer.gd

16 lines
289 B
GDScript3
Raw Permalink Normal View History

2023-03-25 20:42:54 +00:00
@tool
2021-05-26 20:02:51 +00:00
extends EditorPlugin
var import_plugin = null
func get_name():
return "CastleDB Importer"
func _enter_tree():
import_plugin = preload("castledb_importer.gd").new()
add_import_plugin(import_plugin)
func _exit_tree():
remove_import_plugin(import_plugin)
2021-05-28 21:41:35 +00:00
import_plugin = null