aboutsummaryrefslogtreecommitdiff
path: root/src/script/audio/luaopen_Sound.cpp
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2018-05-18 15:27:59 +0800
committerchai <chaifix@163.com>2018-05-18 15:27:59 +0800
commit9458eb868631b29e00182c37f1c7e46981b68edd (patch)
tree2dea921057473e91e8267d997c743896887f7618 /src/script/audio/luaopen_Sound.cpp
parent1b773ad2c250e09c09c065eb3eec64bfebde09ca (diff)
GC
Diffstat (limited to 'src/script/audio/luaopen_Sound.cpp')
-rw-r--r--src/script/audio/luaopen_Sound.cpp26
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;
- }
-
-}
-}