MediaPortal/TestingInterface.cs
Mario Steele 0be63d9ac9 Updated TestingInterface
Updated code TestingInterface.
2025-09-27 02:25:34 -05:00

13 lines
235 B
C#

using Godot;
[SceneTree(root: "Nodes")]
public partial class TestingInterface : Control
{
[GodotOverride]
void OnReady()
{
GD.Print("TestingInterface::OnReady");
}
public override partial void _Ready();
}