generated from AriasCreations/vsmodtemplate
17 lines
No EOL
277 B
C#
17 lines
No EOL
277 B
C#
using System;
|
|
|
|
namespace AriasServerUtils
|
|
{
|
|
public enum ModConfigType
|
|
{
|
|
Global,
|
|
World
|
|
}
|
|
|
|
[Serializable]
|
|
public class ASUModConfig
|
|
{
|
|
public int MaxHomes { get; set; } = 20;
|
|
public PlayerPosition Spawn { get; set; }
|
|
}
|
|
} |