aboutsummaryrefslogtreecommitdiff
path: root/src/client/lua_api/load_io.cpp
diff options
context:
space:
mode:
authorAlexander Pickering <alex@cogarr.net>2018-09-10 23:11:08 -0400
committerAlexander Pickering <alex@cogarr.net>2018-09-10 23:11:08 -0400
commitc38d5eca7091fc7f0206ed0c746622022b2ae508 (patch)
tree8c01d4a941b4152675354b8b7a46c0906e9fb40c /src/client/lua_api/load_io.cpp
parentb3c0d2ead1f384b35615be562c5f06804e8990cb (diff)
downloadbrokengine-c38d5eca7091fc7f0206ed0c746622022b2ae508.tar.gz
brokengine-c38d5eca7091fc7f0206ed0c746622022b2ae508.tar.bz2
brokengine-c38d5eca7091fc7f0206ed0c746622022b2ae508.zip
Added documentation
Also added treeview guielemnt Also added ifilesystem guielement Also added io library
Diffstat (limited to 'src/client/lua_api/load_io.cpp')
-rw-r--r--src/client/lua_api/load_io.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/client/lua_api/load_io.cpp b/src/client/lua_api/load_io.cpp
new file mode 100644
index 0000000..6b368c4
--- /dev/null
+++ b/src/client/lua_api/load_io.cpp
@@ -0,0 +1,11 @@
+#include "load_io.hpp"
+#include "io/ifilesystem.hpp"
+#include <irrlicht.h>
+
+void load_iofuncs(lua_State* L){
+
+ //lua_newtable(L);
+ //lua_setglobal(L,"io");
+
+ ifilesystem_register(L);
+}