VSMod_AriasServerUtils/AriasServerUtils/ModConfig.cs

20 lines
No EOL
342 B
C#

using System;
namespace AriasServerUtils
{
public enum ModConfigType
{
Global,
World
}
[Serializable]
public class ASUModConfig
{
public int MaxHomes { get; set; } = 20;
public bool AdminsBypassMaxHomes { get; set; } = true;
public PlayerPosition Spawn { get; set; }
}
}