14 lines
216 B
C#
14 lines
216 B
C#
|
using Godot;
|
||
|
using System;
|
||
|
|
||
|
namespace BITKit;
|
||
|
|
||
|
public partial class UXServiceProxy : Node
|
||
|
{
|
||
|
//public static void Return() => UXService.Return();
|
||
|
public void Return()
|
||
|
{
|
||
|
UXService.Return();
|
||
|
}
|
||
|
}
|