2025-12-25 17:19:41 +00:00
|
|
|
|
|
|
|
|
using Godot;
|
|
|
|
|
|
|
|
|
|
|
2026-05-22 12:25:02 +00:00
|
|
|
using Rokojori.Extensions;
|
|
|
|
|
namespace Rokojori;
|
|
|
|
|
|
|
|
|
|
[RokojoriActionCoreExport]
|
|
|
|
|
[Tool][GlobalClass]
|
|
|
|
|
public partial class QuitApp : Action
|
|
|
|
|
{
|
|
|
|
|
protected override void _OnTrigger()
|
|
|
|
|
{
|
|
|
|
|
this.LogInfo( "Quitting" );
|
|
|
|
|
GetTree().Quit();
|
2025-12-25 17:19:41 +00:00
|
|
|
}
|
2026-05-22 12:25:02 +00:00
|
|
|
}
|