mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2024-11-23 19:42:51 +01:00
11 lines
282 B
C#
11 lines
282 B
C#
using MemoryPack;
|
|
|
|
namespace Phantom.Common.Data.Minecraft;
|
|
|
|
[MemoryPackable(GenerateType.VersionTolerant)]
|
|
public readonly partial record struct MinecraftStopStrategy(
|
|
[property: MemoryPackOrder(0)] ushort Seconds
|
|
) {
|
|
public static MinecraftStopStrategy Instant => new (0);
|
|
}
|