diff --git a/.itch.toml b/.itch.toml index 0f79722..24703f1 100644 --- a/.itch.toml +++ b/.itch.toml @@ -11,8 +11,8 @@ sandbox = true [[actions]] name = "Novetus SDK" -path = "bin/Novetus.exe" -args = ["-sdk"] +path = "itch_loadNovetusSDK.bat" +console = true sandbox = true [[actions]] @@ -23,8 +23,7 @@ sandbox = true [[actions]] name = "Novetus CMD Help" -path = "bin/NovetusCMD.exe" -args = ["-help"] +path = "itch_loadNovetusCMDHelp.bat" console = true sandbox = true diff --git a/batch/itch_loadNovetusCMDHelp.bat b/batch/itch_loadNovetusCMDHelp.bat new file mode 100644 index 0000000..980d276 --- /dev/null +++ b/batch/itch_loadNovetusCMDHelp.bat @@ -0,0 +1 @@ +"bin/NovetusCMD.exe" -help \ No newline at end of file diff --git a/batch/itch_loadNovetusSDK.bat b/batch/itch_loadNovetusSDK.bat new file mode 100644 index 0000000..ec7cc05 --- /dev/null +++ b/batch/itch_loadNovetusSDK.bat @@ -0,0 +1,3 @@ +@ECHO OFF +start "" "%CD%/bin/Novetus.exe" -sdk +EXIT \ No newline at end of file