feat: add multi-client mode

This commit is contained in:
Anna
2022-02-16 15:38:55 -05:00
parent eea455c51b
commit 458f4a673c
7 changed files with 73 additions and 9 deletions
+2
View File
@@ -30,6 +30,7 @@ internal class Configuration : IPluginConfiguration {
public bool DatabaseBattleMessages;
public bool LoadPreviousSession;
public bool FilterIncludePreviousSessions;
public bool SharedMode;
public float FontSize = 17f;
public float JapaneseFontSize = 17f;
@@ -60,6 +61,7 @@ internal class Configuration : IPluginConfiguration {
this.DatabaseBattleMessages = other.DatabaseBattleMessages;
this.LoadPreviousSession = other.LoadPreviousSession;
this.FilterIncludePreviousSessions = other.FilterIncludePreviousSessions;
this.SharedMode = other.SharedMode;
this.FontSize = other.FontSize;
this.JapaneseFontSize = other.JapaneseFontSize;
this.SymbolsFontSize = other.SymbolsFontSize;