WutheringWaves/GameServer/Controllers/Attributes/GameEventAttribute.cs
2024-02-10 19:04:03 +03:00

14 lines
297 B
C#

using GameServer.Systems.Event;
namespace GameServer.Controllers.Attributes;
[AttributeUsage(AttributeTargets.Method)]
internal class GameEventAttribute : Attribute
{
public GameEventType Type { get; }
public GameEventAttribute(GameEventType type)
{
Type = type;
}
}