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

13 lines
361 B
C++

#ifndef PKMNLIB_WASMITEMREGISTRY_H
#define PKMNLIB_WASMITEMREGISTRY_H
#include <Arbutils/Collections/Dictionary.hpp>
#include <wasm.h>
class WebAssemblyScriptResolver;
class WASMItemRegistry {
public:
static void Register(ArbUt::Dictionary<std::string, wasm_func_t*>& externs, WebAssemblyScriptResolver* resolver);
};
#endif // PKMNLIB_WASMITEMREGISTRY_H