Supercell.GUT/Supercell.GUT.Server/Protocol/Attributes/MessageHandlerAttribute.cs
BreadDEV ad23f95319 [v0.0.1] very early state server
only basic messages, wip.
2024-03-04 20:19:32 +07:00

12 lines
289 B
C#

namespace Supercell.GUT.Server.Protocol.Attributes;
[AttributeUsage(AttributeTargets.Method)]
internal class MessageHandlerAttribute : Attribute
{
public int MessageType { get; }
public MessageHandlerAttribute(int messageType)
{
MessageType = messageType;
}
}