13 lines
235 B
C#
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();
|
|
}
|