-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConfigHandler.cs
More file actions
26 lines (24 loc) · 1003 Bytes
/
ConfigHandler.cs
File metadata and controls
26 lines (24 loc) · 1003 Bytes
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DBDMatchmakingTracker {
public class ConfigHandler {
public bool FirstLaunch { get; set; }
public int RegionPreference { get; set; }
public int PlatformPreference { get; set; }
public bool SniffAllRegions { get; set; }
public bool QueueAsSurvivor { get; set; }
public string LastApplicationVersion { get; set; }
public ConfigHandler(bool _FirstLaunch, int _RegionPreference, int _PlatformPreference, bool _SniffAllRegions,
bool _QueueAsSurvivor, string _LastApplicationVersion) {
FirstLaunch = _FirstLaunch;
RegionPreference = _RegionPreference;
PlatformPreference = _PlatformPreference;
SniffAllRegions = _SniffAllRegions;
QueueAsSurvivor = _QueueAsSurvivor;
LastApplicationVersion = _LastApplicationVersion;
}
}
}