PkmnLib/src/ScriptResolving/WASM/InterfaceMethods/CoreMethods.hpp

15 lines
405 B
C++

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