Stardew_Valley_Mods/GeneralMods/StardustCore/ModConfig.cs

22 lines
360 B
C#
Raw Normal View History

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;
public string modularMenuKey { get; set; } = "P";
2018-08-21 04:53:56 +08:00
public ModConfig()
{
}
}
}