SoundService.cs 512 B

123456789101112131415
  1. using System;
  2. namespace FF8
  3. {
  4. public sealed class SoundService : ISoundService
  5. {
  6. public Boolean IsSupported => true;
  7. public void PlaySound(Int32 fieldSoundIndex, Int32 pan, Int32 volume, Int32 channel)
  8. {
  9. // TODO: Field script
  10. Console.WriteLine($"NotImplemented: {nameof(SoundService)}.{nameof(PlaySound)}({nameof(fieldSoundIndex)}: {fieldSoundIndex}, {nameof(pan)}: {pan}, {nameof(volume)}: {volume}, {nameof(channel)}: {channel})");
  11. }
  12. }
  13. }