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

14 lines
372 B
C++
Raw Normal View History

#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);
};
#endif // PKMNLIB_WASMFORMEREGISTRY_HPP