Fixed symlinks. Added quit event to demos.
[luagame.git] / funcs_sound.h
blobb9d8f5a5ed0ec02c9e5eaa1ccfe59a7fc99a5891
1 /*
2 Copyright (c)2006-2007 - Brett Lajzer
4 See LICENSE for license information.
5 */
7 #ifndef _FUNCS_SOUND_H_
8 #define _FUNCS_SOUND_H_
10 #include "lua.hpp"
11 //function to play a sample
12 int l_playsample(lua_State *L);
14 //function to play music
15 int l_playmusic(lua_State *L);
17 //function to stop music
18 int l_stopmusic(lua_State *L);
20 #endif