源战役客户端
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 

14 satır
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
})