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