1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-08-11 17:51:04 +00:00

Add core.mkdir

This commit is contained in:
ShadowNinja 2014-09-09 15:17:01 -04:00
parent 3a8c788880
commit 05ab9973f9
3 changed files with 49 additions and 33 deletions

View file

@ -78,7 +78,7 @@ private:
// is_yes(arg)
static int l_is_yes(lua_State *L);
// get_scriptdir()
// get_builtin_path()
static int l_get_builtin_path(lua_State *L);
// compress(data, method, ...)
@ -87,6 +87,9 @@ private:
// decompress(data, method, ...)
static int l_decompress(lua_State *L);
// mkdir(path)
static int l_mkdir(lua_State *L);
public:
static void Initialize(lua_State *L, int top);