diff options
author | Rémy Raes <raes.remy@gmail.com> | 2023-12-14 22:19:08 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-14 22:19:08 +0100 |
commit | e49e7e8321269a3de19f07981c8974e87e9fd938 (patch) | |
tree | 5fdfe89944360636f8cbf3450cac642222780697 /.github | |
parent | 6d678ac56b104a5c4aa2a2d9da05b163f2e1d6cd (diff) | |
download | NorthstarMods-e49e7e8321269a3de19f07981c8974e87e9fd938.tar.gz NorthstarMods-e49e7e8321269a3de19f07981c8974e87e9fd938.zip |
Mod download UI integration (#761)v1.21.0-rc2v1.21.0
UI integration for the mod downloading feature. Feature activation locked behind a convar.
Diffstat (limited to '.github')
-rw-r--r-- | .github/nativefuncs.json | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.github/nativefuncs.json b/.github/nativefuncs.json index 8397232d..1148d3e5 100644 --- a/.github/nativefuncs.json +++ b/.github/nativefuncs.json @@ -503,6 +503,25 @@ "argTypes":"string modName" }, { + "name": "NSIsModDownloadable", + "helpText": "checks whether a mod is verified and can be auto-downloaded", + "returnTypeString": "bool", + "argTypes": "string name, string version" + + }, + { + "name": "NSDownloadMod", + "helpText": "downloads a given mod from distant API to local game profile", + "returnTypeString": "void", + "argTypes": "string name, string version" + }, + { + "name": "NSGetModInstallState", + "helpText": "get status of the mod currently being installed", + "returnTypeString": "ModInstallState", + "argTypes": "" + }, + { "name":"NSReloadMods", "helpText":"", "returnTypeString":"void", |