Example #1
0
        public int PlayChannelTimed(int Ticks, int Channel = -1, int Loops = 0)
        {
            int Result = SDL_mixer.Mix_PlayChannelTimed(Channel, myPtr, Loops, Ticks);

            if (Result == -1)
            {
                throw new SDLErrorException(Result);
            }

            return(Result);
        }