From a179dfd4b72d6a61bc3109bb4d004f2a8b683708 Mon Sep 17 00:00:00 2001 From: Remy Raes Date: Wed, 15 Nov 2023 22:18:16 +0100 Subject: [PATCH] fix: move native method signatures to UI part of nativefuncs manifesto --- .github/nativefuncs.json | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/.github/nativefuncs.json b/.github/nativefuncs.json index cda628427..1148d3e58 100644 --- a/.github/nativefuncs.json +++ b/.github/nativefuncs.json @@ -54,25 +54,6 @@ "returnTypeString":"array", "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":"DecodeJSON", "helpText":"converts a json string to a squirrel table", @@ -521,6 +502,25 @@ "returnTypeString":"array", "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":"",