aboutsummaryrefslogtreecommitdiff
path: root/src/client/lua_api/load_io.cpp
blob: 6b368c4544fef49ea742fe8156de48d859eddd2a (plain)
1
2
3
4
5
6
7
8
9
10
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);
}