-
Notifications
You must be signed in to change notification settings - Fork 80
Expand file tree
/
Copy pathITorchConfig.cs
More file actions
55 lines (52 loc) · 1.9 KB
/
ITorchConfig.cs
File metadata and controls
55 lines (52 loc) · 1.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
using System;
using System.Collections.Generic;
using Torch.API;
namespace Torch
{
public interface ITorchConfig
{
bool Autostart { get; set; }
bool ForceUpdate { get; set; }
bool GetPluginUpdates { get; set; }
bool GetTorchUpdates { get; set; }
string InstanceName { get; set; }
string InstancePath { get; set; }
bool NoGui { get; set; }
bool NoUpdate { get; set; }
List<Guid> Plugins { get; set; }
bool LocalPlugins { get; set; }
bool RestartOnCrash { get; set; }
bool ShouldUpdatePlugins { get; }
bool BypassIsReloadableFlag { get; set; }
bool ShouldUpdateTorch { get; }
int TickTimeout { get; set; }
string WaitForPID { get; set; }
string ChatName { get; set; }
string ChatColor { get; set; }
string TestPlugin { get; set; }
bool DisconnectOnRestart { get; set; }
bool SaveWindowChanges { get; set; }
int WindowWidth { get; set; }
int WindowHeight { get; set; }
int WindowX { get; set; }
int WindowY { get; set; }
int FontSize { get; set; }
bool StartMinimized { get; set; }
bool MinimizeOnServerStart { get; set; }
UGCServiceType UgcServiceType { get; set; }
TorchBranchType BranchName { get; set; }
bool SendLogsToKeen { get; set; }
bool DeleteMiniDumps { get; set; }
string LoginToken { get; set; }
bool RestartOnGameUpdate { get; set; }
int GameUpdateRestartDelayMins { get; set; }
bool EnableWhitelist { get; set; }
List<ulong> Whitelist { get; set; }
bool OverwriteGlobalNLogConfigOnUpdate { get; set; }
// Analytics — no PII
bool EnableAnalytics { get; set; }
string AnalyticsToken { get; set; }
bool AnalyticsBannerHidden { get; set; }
void Save(string path = null);
}
}