13 lines
330 B
Plaintext
13 lines
330 B
Plaintext
|
do
|
||
|
local VictoryDisplayApi = {}
|
||
|
local VD_GUID = "6ccd6d"
|
||
|
|
||
|
-- triggers an update of the Victory count
|
||
|
---@param delay Number Delay in seconds after which the update call is executed
|
||
|
VictoryDisplayApi.update = function(delay)
|
||
|
getObjectFromGUID(VD_GUID).call("startUpdate", delay)
|
||
|
end
|
||
|
|
||
|
return VictoryDisplayApi
|
||
|
end
|