mirror of
https://github.com/Adorable-Catgirl/Zorya-NEO.git
synced 2024-11-14 14:38:04 +11:00
31 lines
303 B
Lua
31 lines
303 B
Lua
local vfs = krequire("zorya").loadmod("vfs")
|
|
local io = {}
|
|
local hand = {}
|
|
|
|
local hands = {}
|
|
|
|
function io.open(path, mode)
|
|
|
|
end
|
|
|
|
function io.remove(path)
|
|
|
|
end
|
|
|
|
function io.mkdir(path)
|
|
|
|
end
|
|
|
|
function io.move(path, newpath)
|
|
|
|
end
|
|
|
|
function io.isreadonly(path)
|
|
|
|
end
|
|
|
|
function io.exists(path)
|
|
|
|
end
|
|
|
|
return io |