Add spawn related commands and data storage system

This commit is contained in:
zontreck 2025-01-18 02:59:24 -07:00
parent f2a23552af
commit 0f318a9efa
7 changed files with 211 additions and 9 deletions

View file

@ -0,0 +1,17 @@
using System;
namespace AriasServerUtils
{
public enum ModConfigType
{
Global,
World
}
[Serializable]
public class ASUModConfig
{
public int MaxHomes { get; set; } = 20;
public PlayerPosition Spawn { get; set; }
}
}