HollowKnightAltEntrancesAPMod/Mod/Archipelago.HollowKnight/Settings.cs
2025-10-12 19:15:58 -04:00

24 lines
683 B
C#

namespace Archipelago.HollowKnight
{
public record ConnectionDetails
{
public string ServerUrl { get; set; } = "archipelago.gg";
public int ServerPort { get; set; } = 38281;
public string SlotName { get; set; }
public string ServerPassword { get; set; }
}
public record APGlobalSettings
{
public ConnectionDetails MenuConnectionDetails { get; set; } = new();
public bool EnableGifting { get; set; } = true;
}
public record APLocalSettings
{
public ConnectionDetails ConnectionDetails { get; set; }
public string RoomSeed { get; set; }
public long Seed { get; set; }
}
}