12 lines
152 B
C#
12 lines
152 B
C#
|
using Godot;
|
||
|
using System;
|
||
|
|
||
|
namespace BITKit;
|
||
|
public partial class BITAppProxy : Node
|
||
|
{
|
||
|
private void Exit()
|
||
|
{
|
||
|
GetTree().Quit();
|
||
|
}
|
||
|
}
|