/* $Id$ */ /* Copyright (C) 2003 by David White Part of the Battle for Wesnoth Project http://wesnoth.whitevine.net This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY. See the COPYING file for more details. */ #ifndef SOUND_HPP_INCLUDED #define SOUND_HPP_INCLUDED #include namespace sound { struct manager { manager(); ~manager(); }; void play_music(const std::string& file); void play_sound(const std::string& file); void set_music_volume(double vol); void set_sound_volume(double vol); } #endif