ALUT-2.3.0.2: src/Sound/ALUT.hs
--------------------------------------------------------------------------------
-- |
-- Module : Sound.ALUT
-- Copyright : (c) Sven Panne 2005-2013
-- License : BSD3
--
-- Maintainer : Sven Panne <svenpanne@gmail.com>
-- Stability : stable
-- Portability : portable
--
-- A Haskell binding for the OpenAL Utility Toolkit, which makes managing of
-- OpenAL contexts, loading sounds in various formats and creating waveforms
-- very easy. For more information about the C library on which this binding is
-- based, please see: <http://www.openal.org/openal_webstf/specs/alut.html>.
--
--------------------------------------------------------------------------------
module Sound.ALUT (
module Sound.OpenAL,
module Sound.ALUT.Initialization,
module Sound.ALUT.Loaders,
module Sound.ALUT.Version,
module Sound.ALUT.Sleep
) where
import Sound.OpenAL
import Sound.ALUT.Initialization
import Sound.ALUT.Loaders
import Sound.ALUT.Version
import Sound.ALUT.Sleep