2024-02-10 16:04:03 +00:00
|
|
|
|
using GameServer.Systems.Event;
|
2024-02-09 22:15:05 +00:00
|
|
|
|
|
|
|
|
|
namespace GameServer.Controllers.Attributes;
|
|
|
|
|
|
|
|
|
|
[AttributeUsage(AttributeTargets.Method)]
|
|
|
|
|
internal class GameEventAttribute : Attribute
|
|
|
|
|
{
|
|
|
|
|
public GameEventType Type { get; }
|
|
|
|
|
|
|
|
|
|
public GameEventAttribute(GameEventType type)
|
|
|
|
|
{
|
|
|
|
|
Type = type;
|
|
|
|
|
}
|
|
|
|
|
}
|