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

14 lines
364 B
C++

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