This commit is contained in:
h z
2024-06-26 14:23:02 +08:00
parent cbe5887f5f
commit b8af5f3ccd
22 changed files with 467 additions and 174 deletions

12
Tests/Test2.cs Normal file
View File

@@ -0,0 +1,12 @@
using Godot;
public partial class Test2 : Node2D
{
public override void _Ready()
{
GD.Print("READY ddd");
}
public override void _Process(double delta)
{
}
}