1
0
mirror of https://github.com/chylex/Minecraft-Phantom-Panel.git synced 2025-09-19 09:24:49 +02:00
Files

16 lines
438 B
C#

using Kajabity.Tools.Java;
namespace Phantom.Agent.Minecraft.Properties;
public sealed record ServerProperties(
ushort ServerPort,
ushort RconPort,
bool EnableRcon = true
) {
internal void SetTo(JavaProperties properties) {
MinecraftServerProperties.ServerPort.Set(properties, ServerPort);
MinecraftServerProperties.RconPort.Set(properties, RconPort);
MinecraftServerProperties.EnableRcon.Set(properties, EnableRcon);
}
}