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