Updated TestingInterface

Updated code TestingInterface.
This commit is contained in:
Mario Steele 2025-09-27 02:25:34 -05:00
parent 3931f059db
commit 0be63d9ac9
2 changed files with 57 additions and 0 deletions

View file

@ -1,5 +1,13 @@
using Godot;
[SceneTree(root: "Nodes")]
public partial class TestingInterface : Control
{
[GodotOverride]
void OnReady()
{
GD.Print("TestingInterface::OnReady");
}
public override partial void _Ready();
}