MediaPortal/TestingInterface.cs

14 lines
235 B
C#
Raw Permalink Normal View History

2025-09-26 20:54:51 -05:00
using Godot;
[SceneTree(root: "Nodes")]
2025-09-26 20:54:51 -05:00
public partial class TestingInterface : Control
{
[GodotOverride]
void OnReady()
{
GD.Print("TestingInterface::OnReady");
}
public override partial void _Ready();
2025-09-26 20:54:51 -05:00
}