aboutsummaryrefslogtreecommitdiff
path: root/game/addons/openvic2-plugin/openvic2-plugin.gd
blob: 8cfa4e80ea52754bebe26030f85540797710a085 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
@tool
extends EditorPlugin

const ReleaseExportEditorPlugin := preload("res://addons/openvic2-plugin/ReleaseExportEditorPlugin.gd")
var release_export_editor_plugin := ReleaseExportEditorPlugin.new()

func _enter_tree() -> void:
   add_export_plugin(release_export_editor_plugin)


func _exit_tree() -> void:
   remove_export_plugin(release_export_editor_plugin)