mirror of
https://github.com/JHDev2006/Super-Mario-Bros.-Remastered-Public.git
synced 2025-10-22 23:48:11 +00:00
added the game
This commit is contained in:
16
addons/commitreminder/commitreminder.gd
Normal file
16
addons/commitreminder/commitreminder.gd
Normal file
@@ -0,0 +1,16 @@
|
||||
@tool
|
||||
extends EditorPlugin
|
||||
|
||||
const REMINDER = preload("uid://hbpket74t6f7")
|
||||
var reminder
|
||||
|
||||
func _enter_tree() -> void:
|
||||
# Initialization of the plugin goes here.
|
||||
reminder = REMINDER.instantiate()
|
||||
add_control_to_dock(EditorPlugin.DOCK_SLOT_LEFT_BR, reminder)
|
||||
|
||||
|
||||
func _exit_tree() -> void:
|
||||
# Clean-up of the plugin goes here.
|
||||
remove_control_from_docks(reminder)
|
||||
reminder.free()
|
Reference in New Issue
Block a user