mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2025-09-05 22:53:11 +02:00
10 lines
261 B
C#
10 lines
261 B
C#
using MemoryPack;
|
|
|
|
namespace Phantom.Common.Data.Instance;
|
|
|
|
[MemoryPackable(GenerateType.VersionTolerant)]
|
|
public readonly partial record struct InstancePlayerCounts(
|
|
[property: MemoryPackOrder(0)] int Online,
|
|
[property: MemoryPackOrder(1)] int Maximum
|
|
);
|