feat: add option to hide when not logged in

This commit is contained in:
Anna
2022-02-06 03:45:16 -05:00
parent b2546c439e
commit b82cb7b462
5 changed files with 33 additions and 0 deletions
+2
View File
@@ -14,6 +14,7 @@ internal class Configuration : IPluginConfiguration {
public bool HideChat = true;
public bool HideDuringCutscenes = true;
public bool HideWhenNotLoggedIn = true;
public bool NativeItemTooltips = true;
public bool PrettierTimestamps = true;
public bool MoreCompactPretty;
@@ -36,6 +37,7 @@ internal class Configuration : IPluginConfiguration {
internal void UpdateFrom(Configuration other) {
this.HideChat = other.HideChat;
this.HideDuringCutscenes = other.HideDuringCutscenes;
this.HideWhenNotLoggedIn = other.HideWhenNotLoggedIn;
this.NativeItemTooltips = other.NativeItemTooltips;
this.PrettierTimestamps = other.PrettierTimestamps;
this.MoreCompactPretty = other.MoreCompactPretty;