-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathGlobalSettings.cs
More file actions
39 lines (30 loc) · 1.24 KB
/
Copy pathGlobalSettings.cs
File metadata and controls
39 lines (30 loc) · 1.24 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
using Newtonsoft.Json;
namespace YetAnotherRandoConnection {
public class GlobalSettings {
public bool DreamOrbs = false;
public bool Vines = false;
public bool SoulJars = false;
public bool HivePlatforms = false;
public bool JellyEggBombs = false;
public bool Telescope = false;
public bool Scarecrow = false;
public bool Stalactites = false;
public bool LoveJars = false;
[JsonIgnore]
public bool Any => DreamOrbs || Vines || SoulJars || HivePlatforms || JellyEggBombs || Telescope || Scarecrow || Stalactites || LoveJars;
[MenuChanger.Attributes.MenuRange(-1, 99)]
public int VineGroup = -1;
[MenuChanger.Attributes.MenuRange(-1, 99)]
public int HivePlatformGroup = -1;
[MenuChanger.Attributes.MenuRange(-1, 99)]
public int EggBombGroup = -1;
[MenuChanger.Attributes.MenuRange(-1, 99)]
public int TelescopeGroup = -1;
[MenuChanger.Attributes.MenuRange(-1, 99)]
public int ScarecrowGroup = -1;
[MenuChanger.Attributes.MenuRange(-1, 99)]
public int StalactiteGroup = -1;
[MenuChanger.Attributes.MenuRange(-1, 99)]
public int LoveJarGroup = -1;
}
}