mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-04-25 14:12:13 +00:00
8 lines
150 B
JavaScript
8 lines
150 B
JavaScript
|
import * as wasm from "webxr";
|
||
|
|
||
|
var xrApp = new wasm.XrApp();
|
||
|
xrApp.init()
|
||
|
.then(res => {
|
||
|
console.log(res);
|
||
|
xrApp.start();
|
||
|
});
|