15 lines
397 B
C++
15 lines
397 B
C++
|
#ifndef PKMNLIB_WASMFORMEREGISTRY_HPP
|
||
|
#define PKMNLIB_WASMFORMEREGISTRY_HPP
|
||
|
#include <Arbutils/Collections/Dictionary.hpp>
|
||
|
#include <wasm.h>
|
||
|
|
||
|
class WebAssemblyScriptResolver;
|
||
|
|
||
|
class WASMFormeRegistry {
|
||
|
public:
|
||
|
static void Register(ArbUt::Dictionary<std::string, wasm_func_t*>& externs,
|
||
|
WebAssemblyScriptResolver* resolver);
|
||
|
};
|
||
|
|
||
|
#endif // PKMNLIB_WASMFORMEREGISTRY_HPP
|