A stealth-based 2D platformer where you don't have to kill anyone unless you want to. https://www.semicolin.games
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
1.4 KiB

4 years ago
4 years ago
  1. using Microsoft.Xna.Framework.Audio;
  2. using Microsoft.Xna.Framework.Content;
  3. namespace SemiColinGames {
  4. public static class SoundEffects {
  5. public static SoundEffect IntroMusic;
  6. public static SoundEffect[] SwordSwings = new SoundEffect[14];
  7. public static void Load(ContentManager content) {
  8. IntroMusic = content.Load<SoundEffect>("music/playonloop/smash_bros_short");
  9. SwordSwings[0] = content.Load<SoundEffect>("sfx/zs_whoosh_30568");
  10. SwordSwings[1] = content.Load<SoundEffect>("sfx/zs_whoosh_30569");
  11. SwordSwings[2] = content.Load<SoundEffect>("sfx/zs_whoosh_30570");
  12. SwordSwings[3] = content.Load<SoundEffect>("sfx/zs_whoosh_30571");
  13. SwordSwings[4] = content.Load<SoundEffect>("sfx/zs_whoosh_30572");
  14. SwordSwings[5] = content.Load<SoundEffect>("sfx/zs_whoosh_30573");
  15. SwordSwings[6] = content.Load<SoundEffect>("sfx/zs_whoosh_30574");
  16. SwordSwings[7] = content.Load<SoundEffect>("sfx/zs_whoosh_30575");
  17. SwordSwings[8] = content.Load<SoundEffect>("sfx/zs_whoosh_30576");
  18. SwordSwings[9] = content.Load<SoundEffect>("sfx/zs_whoosh_30577");
  19. SwordSwings[10] = content.Load<SoundEffect>("sfx/zs_whoosh_30578");
  20. SwordSwings[11] = content.Load<SoundEffect>("sfx/zs_whoosh_30579");
  21. SwordSwings[12] = content.Load<SoundEffect>("sfx/zs_whoosh_30580");
  22. SwordSwings[13] = content.Load<SoundEffect>("sfx/zs_whoosh_30581");
  23. }
  24. }
  25. }