2023-10-18 03:25:24 +02:00
|
|
|
using System;
|
|
|
|
|
|
|
|
namespace Godot.SourceGenerators.Sample;
|
|
|
|
|
|
|
|
public partial class NestedClass : GodotObject
|
|
|
|
{
|
|
|
|
public partial class NestedClass2 : GodotObject
|
|
|
|
{
|
|
|
|
public partial class NestedClass3 : GodotObject
|
|
|
|
{
|
|
|
|
[Signal]
|
|
|
|
public delegate void MySignalEventHandler(string str, int num);
|
|
|
|
|
2024-02-19 22:15:37 +01:00
|
|
|
[Export] private String _fieldString = "foo";
|
|
|
|
[Export] private String PropertyString { get; set; } = "foo";
|
2023-10-18 03:25:24 +02:00
|
|
|
|
|
|
|
private void Method()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|