-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFarmSettings.cs
29 lines (29 loc) · 1.23 KB
/
FarmSettings.cs
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
namespace VQTFarm
{
[Serializable]
public class FarmSettings
{
public FarmSettings() { }
public FarmSettings(string flagFormat, string teamToken, string teamOwnerIP, int roundTime, int flagLifeTime, string scoreBoardURL, string flagSubmitterURL, string pythonGetScriptPath, string pythonFlagSendScriptPath)
{
this.flagFormat = flagFormat;
this.teamToken = teamToken;
this.teamOwnerIP = teamOwnerIP;
this.roundTime = roundTime;
this.flagLifeTime = flagLifeTime;
this.scoreBoardURL = scoreBoardURL;
this.flagSubmitterURL = flagSubmitterURL;
this.pythonGetScriptPath = pythonGetScriptPath;
this.pythonFlagSendScriptPath = pythonFlagSendScriptPath;
}
public string flagFormat { get; set; }
public string teamToken { get; set; }
public string teamOwnerIP { get; set; }
public int roundTime { get; set; }
public int flagLifeTime { get; set; }
public string scoreBoardURL { get; set; }
public string flagSubmitterURL { get; set; }
public string pythonGetScriptPath { get; set; }
public string pythonFlagSendScriptPath { get; set; }
}
}