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

16 lines
289 B
GDScript

@tool
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)
import_plugin = null