mirror of
https://github.com/JHDev2006/Super-Mario-Bros.-Remastered-Public.git
synced 2025-10-22 15:38:14 +00:00
15 lines
283 B
GDScript
15 lines
283 B
GDScript
@tool
|
|
extends EditorPlugin
|
|
|
|
|
|
var _export_plugin: EditorExportPlugin
|
|
|
|
|
|
func _enter_tree():
|
|
_export_plugin = preload("res://addons/mod_loader/_export_plugin/export_plugin.gd").new()
|
|
add_export_plugin(_export_plugin)
|
|
|
|
|
|
func _exit_tree() -> void:
|
|
remove_export_plugin(_export_plugin)
|