Event
Some checks failed
Build Dusk / run-tests (push) Failing after 1m44s
Build Dusk / build-linux (push) Successful in 1m50s
Build Dusk / build-psp (push) Failing after 1m53s

This commit is contained in:
2026-01-27 10:41:32 -06:00
parent c7b9a53535
commit 9b73f1717f
6 changed files with 227 additions and 0 deletions

View File

@@ -12,6 +12,7 @@
#include "script/module/modulescene.h"
#include "script/module/moduleitem.h"
#include "script/module/modulelocale.h"
#include "script/module/moduletime.h"
const scriptmodule_t SCRIPT_MODULE_LIST[] = {
{ .name = "system", .callback = moduleSystem },
@@ -20,6 +21,7 @@ const scriptmodule_t SCRIPT_MODULE_LIST[] = {
{ .name = "scene", .callback = moduleScene },
{ .name = "item", .callback = moduleItem },
{ .name = "locale", .callback = moduleLocale },
{ .name = "time", .callback = moduleTime },
};
#define SCRIPT_MODULE_COUNT ( \