mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2024-11-23 19:42:51 +01:00
11 lines
368 B
C#
11 lines
368 B
C#
using MemoryPack;
|
|
using Phantom.Common.Data.Instance;
|
|
|
|
namespace Phantom.Common.Messages.Agent.ToController;
|
|
|
|
[MemoryPackable(GenerateType.VersionTolerant)]
|
|
public sealed partial record ReportInstancePlayerCountsMessage(
|
|
[property: MemoryPackOrder(0)] Guid InstanceGuid,
|
|
[property: MemoryPackOrder(1)] InstancePlayerCounts? PlayerCounts
|
|
) : IMessageToController;
|