From b10e03857f68155afdc08418458946f295fef656 Mon Sep 17 00:00:00 2001 From: Colin McMillen Date: Mon, 16 Mar 2020 15:04:26 -0400 Subject: [PATCH] add more sfx --- Shared/SoundEffects.cs | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/Shared/SoundEffects.cs b/Shared/SoundEffects.cs index ab2506b..02d6520 100644 --- a/Shared/SoundEffects.cs +++ b/Shared/SoundEffects.cs @@ -5,7 +5,7 @@ namespace SemiColinGames { public static class SoundEffects { public static SoundEffect IntroMusic; - public static SoundEffect[] SwordSwings = new SoundEffect[4]; + public static SoundEffect[] SwordSwings = new SoundEffect[14]; public static void Load(ContentManager content) { IntroMusic = content.Load("music/playonloop/smash_bros_short"); @@ -13,6 +13,16 @@ namespace SemiColinGames { SwordSwings[1] = content.Load("sfx/zs_whoosh_30569"); SwordSwings[2] = content.Load("sfx/zs_whoosh_30570"); SwordSwings[3] = content.Load("sfx/zs_whoosh_30571"); + SwordSwings[4] = content.Load("sfx/zs_whoosh_30572"); + SwordSwings[5] = content.Load("sfx/zs_whoosh_30573"); + SwordSwings[6] = content.Load("sfx/zs_whoosh_30574"); + SwordSwings[7] = content.Load("sfx/zs_whoosh_30575"); + SwordSwings[8] = content.Load("sfx/zs_whoosh_30576"); + SwordSwings[9] = content.Load("sfx/zs_whoosh_30577"); + SwordSwings[10] = content.Load("sfx/zs_whoosh_30578"); + SwordSwings[11] = content.Load("sfx/zs_whoosh_30579"); + SwordSwings[12] = content.Load("sfx/zs_whoosh_30580"); + SwordSwings[13] = content.Load("sfx/zs_whoosh_30581"); } } }