10 lines
202 B
Lua
10 lines
202 B
Lua
|
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
|