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