prog
All checks were successful
Build Dusk / run-tests (push) Successful in 1m39s
Build Dusk / build-linux (push) Successful in 1m36s
Build Dusk / build-psp (push) Successful in 1m52s

This commit is contained in:
2026-01-31 21:20:33 -06:00
parent c2cad858a5
commit 982d28a3e0
15 changed files with 247 additions and 1 deletions

View File

@@ -14,15 +14,18 @@
#include "script/module/locale/modulelocale.h"
#include "script/module/time/moduletime.h"
#include "script/module/event/moduleevent.h"
#include "script/module/display/modulecolor.h"
#include "script/module/display/modulespritebatch.h"
#include "script/module/display/modulecamera.h"
#include "script/module/display/moduleglm.h"
#include "script/module/ui/moduleui.h"
#include "util/string.h"
const scriptmodule_t SCRIPT_MODULE_LIST[] = {
{ .name = "system", .callback = moduleSystem },
{ .name = "input", .callback = moduleInput },
{ .name = "platform", .callback = modulePlatform },
{ .name = "color", .callback = moduleColor },
{ .name = "scene", .callback = moduleScene },
{ .name = "item", .callback = moduleItem },
{ .name = "locale", .callback = moduleLocale },
@@ -31,6 +34,7 @@ const scriptmodule_t SCRIPT_MODULE_LIST[] = {
{ .name = "spritebatch", .callback = moduleSpriteBatch },
{ .name = "camera", .callback = moduleCamera },
{ .name = "glm", .callback = moduleGLM },
{ .name = "ui", .callback = moduleUi },
};
#define SCRIPT_MODULE_COUNT ( \