diff options
author | chai <chaifix@163.com> | 2021-10-19 19:52:29 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2021-10-19 19:52:29 +0800 |
commit | 922495098aea1ca569369da664dddb9780d07768 (patch) | |
tree | df775754873304358369fba6c0f8f2dc36177b48 /Runtime/Scripting/FileSystem/FileSystem.bind.cpp | |
parent | 52049bfada8d51c4320a203e487af971447b561e (diff) |
*misc
Diffstat (limited to 'Runtime/Scripting/FileSystem/FileSystem.bind.cpp')
-rw-r--r-- | Runtime/Scripting/FileSystem/FileSystem.bind.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Runtime/Scripting/FileSystem/FileSystem.bind.cpp b/Runtime/Scripting/FileSystem/FileSystem.bind.cpp new file mode 100644 index 0000000..fea8b57 --- /dev/null +++ b/Runtime/Scripting/FileSystem/FileSystem.bind.cpp @@ -0,0 +1,10 @@ +#include <iostream>
+
+#include "Runtime/Lua/LuaBind/LuaBind.h"
+
+int luaopen_GameLab_FileSystem(lua_State* L)
+{
+
+ return 1;
+}
+
|