PyGL
Some checks failed
Build Dusk / build-linux (push) Failing after 2m5s
Build Dusk / build-psp (push) Has been cancelled

This commit is contained in:
2025-12-04 00:23:50 -06:00
parent de78be3e25
commit 6b22f547fe
3 changed files with 31 additions and 29 deletions

View File

@@ -30,7 +30,15 @@ errorret_t scriptManagerInit();
* @param script The script to execute.
* @return The error return value.
*/
errorret_t scriptManagerExec(const char_t *script);
errorret_t scriptManagerExecString(const char_t *script);
/**
* Execute a Lua script from a file.
*
* @param filename The filename of the script to execute.
* @return The error return value.
*/
errorret_t scriptManagerExecFile(const char_t *filename);
/**
* Dispose of the script manager.