/Multimedia/OpenTK/OpenTKChannel.cs
# · C# · 24 lines · 13 code · 1 blank · 10 comment · 0 complexity · 6eb237393b909cb1b8a1440831ca7cdc MD5 · raw file
- using Delta.Multimedia.BaseOpenAL;
-
- namespace Delta.Multimedia.OpenTK
- {
- /// <summary>
- /// OpenTK sound class overriding BaseOpenALChannel because of the
- /// loading the sound modules via the namespace e.g.
- /// <AudioModule>OpenTK</AudioModule>, so it won't find the
- /// BaseOpenALSound. :/
- /// </summary>
- internal class OpenTKChannel : BaseOpenALChannel
- {
- #region Constructors
- /// <summary>
- /// Create a new OpenTK sound channel instance.
- /// </summary>
- /// <param name="parentSound">Parent sound instance.</param>
- public OpenTKChannel(NativeSound parentSound)
- : base(parentSound)
- {
- }
- #endregion
- }
- }