summaryrefslogtreecommitdiff
path: root/modules/mono/editor/Godot.NET.Sdk/Godot.SourceGenerators.Sample/EventSignals.cs
blob: 764ba8f121985bb2acf6bc53ef656ab3b60944c4 (plain)
1
2
3
4
5
6
7
namespace Godot.SourceGenerators.Sample;

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