Module:Overview
Documentation for this module may be created at Module:Overview/doc
local p = {};
_G.maincastindex = 0
_G.sidecastindex = 0
maincast = {
[0] = "Ami",
[1] = "Ayane",
[2] = "Chika"
}
sidecast = {
[0] = "Maki",
[1] = "Wakana"
}
function p.prev()
return _G.maincastindex-1;
end
function p.list()
return unpack(maincast,0,2)
end
function p.next()
return _G.maincastindex-1;
end
return p;
