PkmnLib/src/ScriptResolving/WASM/InterfaceMethods/Library/WASMFormeRegistry.hpp

14 lines
372 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