10 lines
147 B
C#
10 lines
147 B
C#
using Godot;
|
|
using System;
|
|
|
|
public partial class ExitButton : Button
|
|
{
|
|
public override void _Pressed()
|
|
{
|
|
GetTree().Quit();
|
|
}
|
|
}
|