virtualx-engine/modules/mono/editor/Godot.NET.Sdk/Godot.SourceGenerators.Sample/EventSignals.cs
2023-01-27 02:04:18 +01:00

7 lines
175 B
C#

namespace Godot.SourceGenerators.Sample;
public partial class EventSignals : GodotObject
{
[Signal]
public delegate void MySignalEventHandler(string str, int num);
}