Playertest: scene/script system refactor and Wii ABI fix

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-26 23:30:08 -05:00
parent 7c3386cf3e
commit 998601f722
104 changed files with 2855 additions and 3923 deletions
@@ -8,6 +8,6 @@
#pragma once
#include "script/scriptcontext.h"
void modulePlatformLinux(scriptcontext_t *ctx) {
scriptContextExec(ctx, "LINUX = true\n");
static void modulePlatformLinux(lua_State *L) {
luaL_dostring(L, "LINUX = true\n");
}