源战役客户端
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 
 

14 řádky
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
})