SignalAttribute.cs 140 B

12345678910
  1. using System;
  2. namespace Godot
  3. {
  4. [AttributeUsage(AttributeTargets.Delegate)]
  5. public class SignalAttribute : Attribute
  6. {
  7. }
  8. }