2018-08-21 04:53:56 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace StardustCore
|
|
|
|
|
{
|
|
|
|
|
public class ModConfig
|
|
|
|
|
{
|
|
|
|
|
public bool enableMultiplayerHack { get; set; } = false;
|
2018-08-23 16:23:42 +08:00
|
|
|
|
public string modularMenuKey { get; set; } = "P";
|
|
|
|
|
|
2018-08-21 04:53:56 +08:00
|
|
|
|
|
|
|
|
|
public ModConfig()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|