mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2024-11-22 08:42:44 +01:00
23 lines
735 B
C#
23 lines
735 B
C#
using System.Runtime.CompilerServices;
|
|
using MessagePack;
|
|
|
|
namespace Phantom.Common.Messages.ToServer;
|
|
|
|
[MessagePackObject]
|
|
public sealed record SimpleReplyMessage(
|
|
[property: Key(0)] uint SequenceId,
|
|
[property: Key(1)] int EnumValue
|
|
) : IMessageToServer {
|
|
public static SimpleReplyMessage FromEnum<TEnum>(uint sequenceId, TEnum enumValue) where TEnum : Enum {
|
|
if (Unsafe.SizeOf<TEnum>() != Unsafe.SizeOf<int>()) {
|
|
throw new ArgumentException("Enum type " + typeof(TEnum).Name + " is not compatible with int.", nameof(TEnum));
|
|
}
|
|
|
|
return new SimpleReplyMessage(sequenceId, Unsafe.As<TEnum, int>(ref enumValue));
|
|
}
|
|
|
|
public Task Accept(IMessageToServerListener listener) {
|
|
return listener.HandleSimpleReply(this);
|
|
}
|
|
}
|