Update 'Bundle Patcher Architecture'
parent
3e027203c2
commit
a642c3616c
1 changed files with 4 additions and 4 deletions
|
@ -19,13 +19,13 @@ An independent mod that's handled specially. Its purpose is to handle the initia
|
||||||
```lua
|
```lua
|
||||||
local obj = {}
|
local obj = {}
|
||||||
|
|
||||||
-- boot_gui Gui A special Gui object created by the game that can be used to display status on
|
-- @param boot_gui Gui A special Gui object created by the game that can be used to display status on
|
||||||
-- mod_data table The contents of `scripts/mods/mod_data.lua` as described below.
|
-- @param mod_data table The contents of `scripts/mods/mod_data.lua` as described below.
|
||||||
-- libs table A key-value map of certain Lua libraries/globals that the game strips, but that might be useful during the loading process
|
-- @param libs table A key-value map of certain Lua libraries/globals that the game strips, but that might be useful during the loading process
|
||||||
function obj:init(boot_gui, mod_data, libs)
|
function obj:init(boot_gui, mod_data, libs)
|
||||||
end
|
end
|
||||||
|
|
||||||
-- dt number The delta time since the last call
|
-- @param dt number The delta time since the last call
|
||||||
function obj:update(dt)
|
function obj:update(dt)
|
||||||
return is_done
|
return is_done
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Reference in a new issue