22 lines
360 B
C#
22 lines
360 B
C#
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;
|
|
public string modularMenuKey { get; set; } = "P";
|
|
|
|
|
|
public ModConfig()
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
}
|