aboutsummaryrefslogtreecommitdiff
path: root/NorthstarDedicatedTest/audio.h
diff options
context:
space:
mode:
Diffstat (limited to 'NorthstarDedicatedTest/audio.h')
-rw-r--r--NorthstarDedicatedTest/audio.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/NorthstarDedicatedTest/audio.h b/NorthstarDedicatedTest/audio.h
index d53f5317..3220d804 100644
--- a/NorthstarDedicatedTest/audio.h
+++ b/NorthstarDedicatedTest/audio.h
@@ -15,17 +15,18 @@ enum class AudioSelectionStrategy
class EventOverrideData
{
-public:
+ public:
EventOverrideData(const std::string&, const fs::path&);
EventOverrideData();
-public:
+
+ public:
bool LoadedSuccessfully = false;
std::vector<std::string> EventIds = {};
std::vector<std::pair<std::string, std::regex>> EventIdsRegex = {};
std::vector<std::pair<size_t, std::unique_ptr<uint8_t[]>>> Samples = {};
-
+
AudioSelectionStrategy Strategy = AudioSelectionStrategy::SEQUENTIAL;
size_t CurrentIndex = 0;
@@ -34,7 +35,7 @@ public:
class CustomAudioManager
{
-public:
+ public:
bool TryLoadAudioOverride(const fs::path&);
void ClearAudioOverrides();