Implement sounds on interaction

This commit is contained in:
Infi
2024-04-16 00:36:30 +02:00
parent 230e63033d
commit 30ccf8e416
6 changed files with 61 additions and 5 deletions
+2
View File
@@ -38,6 +38,7 @@ internal class Configuration : IPluginConfiguration
public bool SharedMode;
public bool SortAutoTranslate;
public bool CollapseDuplicateMessages;
public bool PlaySounds = true;
public bool FontsEnabled = true;
public ExtraGlyphRanges ExtraGlyphRanges = 0;
@@ -83,6 +84,7 @@ internal class Configuration : IPluginConfiguration
SharedMode = other.SharedMode;
SortAutoTranslate = other.SortAutoTranslate;
CollapseDuplicateMessages = other.CollapseDuplicateMessages;
PlaySounds = other.PlaySounds;
FontsEnabled = other.FontsEnabled;
ExtraGlyphRanges = other.ExtraGlyphRanges;
FontSize = other.FontSize;