new sfx file names

This commit is contained in:
Colin McMillen 2020-03-16 14:57:24 -04:00
parent e4a4754ace
commit 0c7fa95711

View File

@ -9,10 +9,10 @@ namespace SemiColinGames {
public static void Load(ContentManager content) { public static void Load(ContentManager content) {
IntroMusic = content.Load<SoundEffect>("music/playonloop/smash_bros_short"); IntroMusic = content.Load<SoundEffect>("music/playonloop/smash_bros_short");
SwordSwings[0] = content.Load<SoundEffect>("sfx/zapsplat/sword_whoosh_1"); SwordSwings[0] = content.Load<SoundEffect>("sfx/zs_whoosh_30568");
SwordSwings[1] = content.Load<SoundEffect>("sfx/zapsplat/sword_whoosh_2"); SwordSwings[1] = content.Load<SoundEffect>("sfx/zs_whoosh_30569");
SwordSwings[2] = content.Load<SoundEffect>("sfx/zapsplat/sword_whoosh_3"); SwordSwings[2] = content.Load<SoundEffect>("sfx/zs_whoosh_30570");
SwordSwings[3] = content.Load<SoundEffect>("sfx/zapsplat/sword_whoosh_4"); SwordSwings[3] = content.Load<SoundEffect>("sfx/zs_whoosh_30571");
} }
} }
} }