summaryrefslogtreecommitdiff
path: root/Runner/Scripting/luax_cfunctions.cpp
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2021-10-17 16:01:30 +0800
committerchai <chaifix@163.com>2021-10-17 16:01:30 +0800
commit6e73ca6ada8a41692809dae5db89c8db0675ce1e (patch)
tree3ca6f06b29b3e2c183750ddcff8d7a09d0785e6b /Runner/Scripting/luax_cfunctions.cpp
parente13f699ee5f575198552d94ada1167305c82bb2f (diff)
-Runner
Diffstat (limited to 'Runner/Scripting/luax_cfunctions.cpp')
-rw-r--r--Runner/Scripting/luax_cfunctions.cpp19
1 files changed, 0 insertions, 19 deletions
diff --git a/Runner/Scripting/luax_cfunctions.cpp b/Runner/Scripting/luax_cfunctions.cpp
deleted file mode 100644
index d93a0ee..0000000
--- a/Runner/Scripting/luax_cfunctions.cpp
+++ /dev/null
@@ -1,19 +0,0 @@
-#include "luax_cfunctions.h"
-#include "luax_config.h"
-
-namespace Luax
-{
-
- int luax_c_getupvalue(lua_State* L)
- {
- lua_pushvalue(L, lua_upvalueindex(1));
- return 1;
- }
-
- int luax_c_errfunc(lua_State* L)
- {
- cc8* msg = luaL_optstring(L, lua_upvalueindex(1), "");
- return luaL_error(L, msg);
- }
-
-} \ No newline at end of file