You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
480 B

using CommunityToolkit.Diagnostics;
namespace CMSGame
{
public partial class PauseMenu : VBoxContainer
{
public void On_ResumeBattleButton_Pressed()
{
Hide();
}
public void On_SettingsMenuButton_Pressed()
{
GetNode<Popup>("%SettingsPopup").PopupCentered();
}
public void On_EscapeFromBattleButton_Pressed()
{
ThrowHelper.ThrowNotSupportedException();
}
}
}