Initial commit, mod action done, plugin WIP

Finally managed to get the wasm module loaded and executing using some webpack witchcraft.

Still need to actually implement the plugin action.
This commit is contained in:
2022-03-23 01:25:58 -04:00
commit 5f8e00c300
9 changed files with 3453 additions and 0 deletions

3
src/wasmLoader.js Normal file
View File

@@ -0,0 +1,3 @@
export function loadWasm(closure) {
import("skyrim-cell-dump-wasm").then(closure);
}