Files
Torch/Torch.API/ITorchConfig.cs
John Gross 79fe6a08ab * Torch 1.0.182.329
- Improved logging, logs now to go the Logs folder and aren't deleted on start
    - Fixed chat tab not enabling with -autostart
    - Fixed player list
    - Watchdog time-out is now configurable in TorchConfig.xml
    - Fixed infinario log spam
    - Fixed crash when sending empty message from chat tab
    - Fixed permissions on Torch commands
    - Changed plugin StoragePath to the current instance path (per-instance configs)
2017-07-01 11:16:14 -07:00

14 lines
361 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; }
int TickTimeout { get; set; }
bool Save(string path = null);
}
}