forked from maddie480/DashCountMod
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDashCountModSettings.cs
executable file
·52 lines (46 loc) · 2.01 KB
/
DashCountModSettings.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
namespace Celeste.Mod.DashCountMod {
public class DashCountModSettings : EverestModuleSettings {
public enum DashCountOptions { None, Fewest, Total }
public enum ShowDashCountInGameOptions { None, Session, Chapter, File, Both }
private DashCountOptions dashCountInChapterPanel = DashCountOptions.None;
private DashCountOptions dashCountOnProgressPage = DashCountOptions.None;
private ShowDashCountInGameOptions showDashCountInGame = ShowDashCountInGameOptions.None;
private bool countDreamDashRedirectsAsDashes = false;
private bool doNotResetDashCountOnDeath = false;
public DashCountOptions DashCountInChapterPanel {
get { return dashCountInChapterPanel; }
set {
dashCountInChapterPanel = value;
DashCountModModule.Instance.SetDashCounterInChapterPanel(value);
}
}
public DashCountOptions DashCountOnProgressPage {
get { return dashCountOnProgressPage; }
set {
dashCountOnProgressPage = value;
DashCountModModule.Instance.SetFewestDashesInProgressPage(value);
}
}
public ShowDashCountInGameOptions DashCountInGame {
get { return showDashCountInGame; }
set {
showDashCountInGame = value;
DashCountModModule.Instance.SetShowDashCountInGame(value);
}
}
public bool CountDreamDashRedirectsAsDashes {
get { return countDreamDashRedirectsAsDashes; }
set {
countDreamDashRedirectsAsDashes = value;
DashCountModModule.Instance.SetCountDreamDashRedirectsAsDashes(value);
}
}
public bool DoNotResetDashCountOnDeath {
get { return doNotResetDashCountOnDeath; }
set {
doNotResetDashCountOnDeath = value;
DashCountModModule.Instance.SetDoNotResetDashCountOnDeath(value);
}
}
}
}