aboutsummaryrefslogtreecommitdiff
path: root/src/script/audio/luaopen_Source.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/script/audio/luaopen_Source.cpp')
-rw-r--r--src/script/audio/luaopen_Source.cpp26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/script/audio/luaopen_Source.cpp b/src/script/audio/luaopen_Source.cpp
deleted file mode 100644
index 2ab5d16..0000000
--- a/src/script/audio/luaopen_Source.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_Source(lua_State* L)
- {
-
- return 1;
- }
-
-}
-}