mirror of
https://github.com/thebreaddev/Supercell.GUT.git
synced 2024-11-13 00:54:37 +00:00
13 lines
289 B
C#
13 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;
|
|||
|
}
|
|||
|
}
|