generated from AriasCreations/vsmodtemplate
Add spawn related commands and data storage system
This commit is contained in:
parent
f2a23552af
commit
0f318a9efa
7 changed files with 211 additions and 9 deletions
17
AriasServerUtils/ModConfig.cs
Normal file
17
AriasServerUtils/ModConfig.cs
Normal 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; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue