mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2026-01-12 17:58:15 +01:00
11 lines
273 B
C#
11 lines
273 B
C#
using MemoryPack;
|
|
|
|
namespace Phantom.Common.Data.Minecraft;
|
|
|
|
[MemoryPackable(GenerateType.VersionTolerant)]
|
|
public sealed partial record MinecraftStopStrategy(
|
|
[property: MemoryPackOrder(0)] ushort Seconds
|
|
) {
|
|
public static MinecraftStopStrategy Instant => new (0);
|
|
}
|