blob: 5f72dfa9eb36a3b2081f707132c00e7ecb7905a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
---@meta
---@class cc.Manifest :cc.Ref
local Manifest={ }
cc.Manifest=Manifest
---* @brief Gets remote manifest file url.
---@return string
function Manifest:getManifestFileUrl () end
---* @brief Check whether the version informations have been fully loaded
---@return boolean
function Manifest:isVersionLoaded () end
---* @brief Check whether the manifest have been fully loaded
---@return boolean
function Manifest:isLoaded () end
---* @brief Gets remote package url.
---@return string
function Manifest:getPackageUrl () end
---* @brief Gets manifest version.
---@return string
function Manifest:getVersion () end
---* @brief Gets remote version file url.
---@return string
function Manifest:getVersionFileUrl () end
---* @brief Get the search paths list related to the Manifest.
---@return array_table
function Manifest:getSearchPaths () end
|