PageRenderTime 41ms CodeModel.GetById 16ms RepoModel.GetById 0ms app.codeStats 0ms

/Multimedia/OpenTK/OpenTKSound.cs

#
C# | 24 lines | 13 code | 1 blank | 10 comment | 0 complexity | 0272f5655e83f0fa0e9d5832c0bee4ad MD5 | raw file
Possible License(s): Apache-2.0
  1. using Delta.Multimedia.BaseOpenAL;
  2. namespace Delta.Multimedia.OpenTK
  3. {
  4. /// <summary>
  5. /// OpenTK sound class overriding BaseOpenALSound because of the
  6. /// loading the sound modules via the namespace e.g.
  7. /// <AudioModule>OpenTK</AudioModule>, so it won't find the
  8. /// BaseOpenALSound. :/
  9. /// </summary>
  10. internal class OpenTKSound : BaseOpenALSound
  11. {
  12. #region Constructors
  13. /// <summary>
  14. /// Create a new OpenTK sound instance.
  15. /// </summary>
  16. /// <param name="parentSound">Parent sound instance.</param>
  17. public OpenTKSound(Sound parentSound)
  18. : base(parentSound)
  19. {
  20. }
  21. #endregion
  22. }
  23. }