Skip to content

Commit

Permalink
add box2d-wasm (#397)
Browse files Browse the repository at this point in the history
  • Loading branch information
lealzhan authored Aug 17, 2023
1 parent f84dc9b commit b47943d
Show file tree
Hide file tree
Showing 8 changed files with 76,346 additions and 0 deletions.
575 changes: 575 additions & 0 deletions emscripten/box2d/b2.d.ts

Large diffs are not rendered by default.

13 changes: 13 additions & 0 deletions emscripten/box2d/box2d.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
// eslint-disable-next-line @typescript-eslint/triple-slash-reference
/// <reference path="./b2.d.ts" />

declare module 'external:emscripten/box2d/box2d.release.asm.js' {
export default BOX2D;
}

declare module 'external:emscripten/box2d/box2d.release.wasm.js' {
export default BOX2D;
}

// tslint:disable
declare function BOX2D (moduleOptions?: any): Promise<void>;
71,407 changes: 71,407 additions & 0 deletions emscripten/box2d/box2d.debug.asm.js

Large diffs are not rendered by default.

4,297 changes: 4,297 additions & 0 deletions emscripten/box2d/box2d.debug.wasm.js

Large diffs are not rendered by default.

Binary file added emscripten/box2d/box2d.debug.wasm.wasm
Binary file not shown.
33 changes: 33 additions & 0 deletions emscripten/box2d/box2d.release.asm.js

Large diffs are not rendered by default.

21 changes: 21 additions & 0 deletions emscripten/box2d/box2d.release.wasm.js

Large diffs are not rendered by default.

Binary file added emscripten/box2d/box2d.release.wasm.wasm
Binary file not shown.

0 comments on commit b47943d

Please sign in to comment.