mirror of
https://github.com/godotengine/godot.git
synced 2025-11-09 01:51:10 +00:00
12 lines
193 B
C#
12 lines
193 B
C#
using System;
|
|
|
|
namespace Godot
|
|
{
|
|
[AttributeUsage(AttributeTargets.Delegate)]
|
|
public class SignalAttribute : Attribute
|
|
{
|
|
public SignalAttribute()
|
|
{
|
|
}
|
|
}
|
|
}
|