15 lines
301 B
C#
15 lines
301 B
C#
|
using GameServer.Controllers.Event;
|
|||
|
|
|||
|
namespace GameServer.Controllers.Attributes;
|
|||
|
|
|||
|
[AttributeUsage(AttributeTargets.Method)]
|
|||
|
internal class GameEventAttribute : Attribute
|
|||
|
{
|
|||
|
public GameEventType Type { get; }
|
|||
|
|
|||
|
public GameEventAttribute(GameEventType type)
|
|||
|
{
|
|||
|
Type = type;
|
|||
|
}
|
|||
|
}
|