1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-06 12:20:30 +00:00

add a [Signal] attribute to CSharpScripts

This commit is contained in:
Paul Joannon
2018-01-18 18:17:29 +01:00
parent 3d4bf5a90e
commit efd52cd172
7 changed files with 103 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
using System;
namespace Godot
{
[AttributeUsage(AttributeTargets.Delegate)]
public class SignalAttribute : Attribute
{
public SignalAttribute()
{
}
}
}