forgot to push for a while, got drag-and-drop mostly working

This commit is contained in:
2024-04-19 01:31:01 -05:00
parent 978690c2c2
commit 885bc5ad6e
25 changed files with 1320 additions and 1 deletions

23
InputSingleton.cs Normal file
View File

@@ -0,0 +1,23 @@
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()
{
}
}