diff options
Diffstat (limited to 'src/script/audio/luaopen_Sound.cpp')
-rw-r--r-- | src/script/audio/luaopen_Sound.cpp | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/src/script/audio/luaopen_Sound.cpp b/src/script/audio/luaopen_Sound.cpp deleted file mode 100644 index d43147e..0000000 --- a/src/script/audio/luaopen_Sound.cpp +++ /dev/null @@ -1,26 +0,0 @@ -#include "3rdparty/luax/luax.h" - -namespace jin -{ -namespace lua -{ - - static int l_play(lua_State* L) - { - - return 0; - } - - static const luaL_Reg f[] = { - {"play", l_play}, - {0, 0} - }; - - int luaopen_Sound(lua_State* L) - { - - return 1; - } - -} -} |