OC-Tsuki/ksrc/archives.lua

10 lines
202 B
Lua
Raw Normal View History

2020-06-02 16:23:58 +10:00
local archives = {}
archives.tsar = (function()
--#include "ksrc/arcs/tsar/init.lua"
end)()
function archive.parse(stream, atype)
if archives[atype] then
return archives[atype].read(stream)
end
end