loose menu

This commit is contained in:
Rendo 2025-06-29 01:15:45 +05:00
commit a6f817efbc
17 changed files with 369 additions and 52 deletions

View file

@ -0,0 +1,12 @@
using Godot;
using System;
public partial class RestartButton : Button
{
public override void _Pressed()
{
GetTree().Paused = false;
GetTree().ReloadCurrentScene();
}
}