ALUT-2.4.0.2: src/Sound/ALUT.hs
--------------------------------------------------------------------------------
-- |
-- Module : Sound.ALUT
-- Copyright : (c) Sven Panne 2005-2016
-- 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://distro.ibiblio.org/rootlinux/rootlinux-ports/more/freealut/freealut-1.1.0/doc/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