generated from AriasCreations/vsmodtemplate
20 lines
No EOL
342 B
C#
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; }
|
|
}
|
|
} |