2022-05-21 18:46:04 +00:00
|
|
|
#ifndef PKMNLIB_WASMFORMEREGISTRY_HPP
|
|
|
|
#define PKMNLIB_WASMFORMEREGISTRY_HPP
|
|
|
|
#include <Arbutils/Collections/Dictionary.hpp>
|
|
|
|
#include <wasm.h>
|
|
|
|
|
|
|
|
class WebAssemblyScriptResolver;
|
|
|
|
|
|
|
|
class WASMFormeRegistry {
|
|
|
|
public:
|
2022-05-22 11:00:53 +00:00
|
|
|
static void Register(ArbUt::Dictionary<std::string, wasm_func_t*>& externs, WebAssemblyScriptResolver* resolver);
|
2022-05-21 18:46:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // PKMNLIB_WASMFORMEREGISTRY_HPP
|