This commit is contained in:
Rendo 2025-06-27 01:52:57 +05:00
commit 30266b36cf
11 changed files with 253 additions and 22 deletions

View file

@ -0,0 +1,11 @@
using Godot;
using System;
public partial class PauseButton : Button
{
public override void _Pressed()
{
PauseMenu.Pause();
}
}