mirror of
https://github.com/thebreaddev/Supercell.GUT.git
synced 2024-11-10 07:44:37 +00:00
ad23f95319
only basic messages, wip.
12 lines
289 B
C#
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;
|
|
}
|
|
}
|