97713ff77a
Changed the signal declaration signal to: ``` // The following generates a MySignal event [Signal] public delegate void MySignalEventHandler(int param); ```
7 lines
176 B
C#
7 lines
176 B
C#
namespace Godot.SourceGenerators.Sample;
|
|
|
|
public partial class EventSignals : Godot.Object
|
|
{
|
|
[Signal]
|
|
public delegate void MySignalEventHandler(string str, int num);
|
|
}
|