Drag and drop works

This commit is contained in:
Senad Uka
2022-12-31 05:51:34 +01:00
parent f7b7035bf2
commit 90fd7e1ef5
19 changed files with 381 additions and 312 deletions

View File

@@ -1,24 +1,27 @@
using Godot;
using System;
public class startup : Node
namespace lettergodot
{
// Declare member variables here. Examples:
// private int a = 2;
// private string b = "text";
// Called when the node enters the scene tree for the first time.
public override void _Ready()
public class startup : Node
{
// Declare member variables here. Examples:
// private int a = 2;
// private string b = "text";
// Called when the node enters the scene tree for the first time.
public override void _Ready()
{
}
}
// // Called every frame. 'delta' is the elapsed time since the previous frame.
// public override void _Process(float delta)
// {
//
// }
}
}