15 lines
402 B
C#
15 lines
402 B
C#
namespace Torch
|
|
{
|
|
public interface ITorchConfig
|
|
{
|
|
//bool AutoRestart { get; set; }
|
|
//int Autosave { get; set; }
|
|
string InstanceName { get; set; }
|
|
string InstancePath { get; set; }
|
|
//bool LogChat { get; set; }
|
|
bool RedownloadPlugins { get; set; }
|
|
bool EnableAutomaticUpdates { get; set; }
|
|
|
|
bool Save(string path = null);
|
|
}
|
|
} |