diff options
author | Paul Joannon <hello@pauljoannon.com> | 2018-01-18 18:17:29 +0100 |
---|---|---|
committer | Paul Joannon <hello@pauljoannon.com> | 2018-02-17 19:29:26 +0100 |
commit | efd52cd1725145dc9c8038477dbe133b23868e99 (patch) | |
tree | ac427f4b44ba9935d953e4b0c9c6df6676ce1dfb /modules/mono/glue | |
parent | 3d4bf5a90e9b32c6c93647c7fa08785b22cd5442 (diff) |
add a [Signal] attribute to CSharpScripts
Diffstat (limited to 'modules/mono/glue')
-rw-r--r-- | modules/mono/glue/cs_files/SignalAttribute.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/modules/mono/glue/cs_files/SignalAttribute.cs b/modules/mono/glue/cs_files/SignalAttribute.cs new file mode 100644 index 0000000000..d8a6cabb83 --- /dev/null +++ b/modules/mono/glue/cs_files/SignalAttribute.cs @@ -0,0 +1,12 @@ +using System; + +namespace Godot +{ + [AttributeUsage(AttributeTargets.Delegate)] + public class SignalAttribute : Attribute + { + public SignalAttribute() + { + } + } +} |