Files
Torch/Torch.API/ITorchConfig.cs

13 lines
323 B
C#

namespace Torch
{
public interface ITorchConfig
{
string InstanceName { get; set; }
string InstancePath { get; set; }
bool RedownloadPlugins { get; set; }
bool AutomaticUpdates { get; set; }
bool RestartOnCrash { get; set; }
bool Save(string path = null);
}
}