Event in lua (partial)
Some checks failed
Build Dusk / run-tests (push) Failing after 2m30s
Build Dusk / build-linux (push) Failing after 2m37s
Build Dusk / build-psp (push) Failing after 1m54s

This commit is contained in:
2026-01-27 12:47:15 -06:00
parent 9b73f1717f
commit 6e78ee188d
12 changed files with 345 additions and 19 deletions

View File

@@ -12,8 +12,13 @@
#include <lauxlib.h>
#include <lualib.h>
typedef struct event_s event_t;
#define SCRIPT_CONTEXT_MAX_EVENT_SUBSCRIPTIONS 64
typedef struct scriptcontext_s {
lua_State *luaState;
event_t* subscribedEvents[SCRIPT_CONTEXT_MAX_EVENT_SUBSCRIPTIONS];
} scriptcontext_t;
/**