源战役客户端
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 
 
 

14 rindas
346 B

Status = Status or {}
local Status = Status
local Time = Time
setmetatable(Status,{__index = function (t,k)
if k == "NowTime" then
return Time.time
elseif k == "NowUnscaledTime" then
return Time.unscaledTime
elseif k == "ElapseTime" then
return Time.deltaTime
end
end
})