added the game

This commit is contained in:
JHDev2006
2025-09-13 16:30:32 +01:00
parent 5ef689109b
commit 3773bdaf64
3616 changed files with 263702 additions and 0 deletions

View 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()