mirror of
https://github.com/Facepunch/sbox-public.git
synced 2026-01-13 08:48:39 -05:00
This commit imports the C# engine code and game files, excluding C++ source code. [Source-Commit: ceb3d758046e50faa6258bc3b658a30c97743268]
20 lines
470 B
C#
20 lines
470 B
C#
namespace Sandbox.UI;
|
|
|
|
/// <summary>
|
|
/// Add an event listener to a <see cref="Panel"/> event with the given name.<br/>
|
|
/// See <see cref="Panel.CreateEvent(string, object, float?)"/>.
|
|
/// </summary>
|
|
[AttributeUsage( AttributeTargets.Method )]
|
|
public class PanelEventAttribute : Attribute
|
|
{
|
|
/// <summary>
|
|
/// Name of the event to listen to.
|
|
/// </summary>
|
|
public string Name { get; set; }
|
|
|
|
public PanelEventAttribute( string name = null )
|
|
{
|
|
Name = name;
|
|
}
|
|
}
|