mirror of
https://github.com/godotengine/godot.git
synced 2025-10-30 21:21:10 +00:00
8 lines
176 B
C#
8 lines
176 B
C#
|
|
namespace Godot.SourceGenerators.Sample;
|
||
|
|
|
||
|
|
public partial class EventSignals : Godot.Object
|
||
|
|
{
|
||
|
|
[Signal]
|
||
|
|
public delegate void MySignalEventHandler(string str, int num);
|
||
|
|
}
|