namespace Sandbox.UI; /// /// Add an event listener to a event with the given name.
/// See . ///
[AttributeUsage( AttributeTargets.Method )] public class PanelEventAttribute : Attribute { /// /// Name of the event to listen to. /// public string Name { get; set; } public PanelEventAttribute( string name = null ) { Name = name; } }