12 lines
193 B
C#
12 lines
193 B
C#
using System;
|
|
|
|
namespace Godot
|
|
{
|
|
[AttributeUsage(AttributeTargets.Delegate)]
|
|
public class SignalAttribute : Attribute
|
|
{
|
|
public SignalAttribute()
|
|
{
|
|
}
|
|
}
|
|
}
|