godot-module-template/engine/modules/mono/editor/Godot.NET.Sdk/Godot.SourceGenerators.Sample/EventSignals.cs

8 lines
175 B
C#
Raw Normal View History

2025-01-17 15:36:38 +00:00
namespace Godot.SourceGenerators.Sample;
public partial class EventSignals : GodotObject
{
[Signal]
public delegate void MySignalEventHandler(string str, int num);
}