mirror of
https://codeberg.org/Ikatono/TierMaker.git
synced 2025-10-28 20:45:35 -05:00
23 lines
398 B
C#
23 lines
398 B
C#
using Godot;
|
|
|
|
public class InputSingleton
|
|
{
|
|
private static InputSingleton _SingletonCache;
|
|
public static InputSingleton Instance
|
|
{
|
|
get
|
|
{
|
|
_SingletonCache ??= new();
|
|
return _SingletonCache;
|
|
}
|
|
}
|
|
private InputSingleton()
|
|
{
|
|
|
|
}
|
|
public Node ClickedOn { get; set; }
|
|
private void HandleMouseRelease()
|
|
{
|
|
|
|
}
|
|
} |