aboutsummaryrefslogtreecommitdiff
path: root/src/lua/audio/luaopen_Sound.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/lua/audio/luaopen_Sound.cpp')
-rw-r--r--src/lua/audio/luaopen_Sound.cpp25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/lua/audio/luaopen_Sound.cpp b/src/lua/audio/luaopen_Sound.cpp
deleted file mode 100644
index 0b494b8..0000000
--- a/src/lua/audio/luaopen_Sound.cpp
+++ /dev/null
@@ -1,25 +0,0 @@
-#include "libs/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;
- }
-}
-}