Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion YARG.Core/Audio/AudioEnums.cs
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,13 @@ public enum VoxSample
TimesMany,
FullBandFullCombo,
HighScore,
FailSound
FailSound,
AntiPiracyBlurb,
YargTitleBlurb,
MenuSettings,
MenuProfiles,
MenuLibrary,
Onboarding
}

public enum DSPType
Expand Down
6 changes: 6 additions & 0 deletions YARG.Core/Audio/AudioHelpers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,12 @@ Instrument.Vocals or
new Sample<VoxSample>(VoxSample.FullBandFullCombo, "FullBandFullCombo"),
new Sample<VoxSample>(VoxSample.HighScore, "HighScore"),
new Sample<VoxSample>(VoxSample.FailSound, "FailSound"),
new Sample<VoxSample>(VoxSample.AntiPiracyBlurb, "AntiPiracyBlurb"),
new Sample<VoxSample>(VoxSample.YargTitleBlurb, "YargTitleBlurb"),
new Sample<VoxSample>(VoxSample.MenuSettings, "MenuSettings"),
new Sample<VoxSample>(VoxSample.MenuProfiles, "MenuProfiles"),
new Sample<VoxSample>(VoxSample.MenuLibrary, "MenuLibrary"),
new Sample<VoxSample>(VoxSample.Onboarding, "Onboarding"),
};

public class Sample<T>
Expand Down