Skip to content

Commit

Permalink
Build: (b8c2c9f) Disable WS on WASM
Browse files Browse the repository at this point in the history
  • Loading branch information
Leinnan committed Dec 17, 2024
0 parents commit 9b88201
Show file tree
Hide file tree
Showing 20 changed files with 2,683 additions and 0 deletions.
Binary file added assets/fonts/Augusta.ttf
Binary file not shown.
Binary file added assets/fonts/FiraSans-Bold.ttf
Binary file not shown.
Binary file added assets/fonts/coolvetica_condensed_rg.otf
Binary file not shown.
Binary file added assets/gfx/coins.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/gfx/defaultItemIcon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/gfx/gameIcon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/gfx/gameIconTransparent.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/gfx/steampunk_bg_forge.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/gfx/steampunk_bg_robot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/sfx/blacksmith.ogg
Binary file not shown.
Binary file added assets/sfx/interface_1.ogg
Binary file not shown.
Binary file added assets/sfx/interface_2.ogg
Binary file not shown.
Binary file added assets/sfx/interface_3.ogg
Binary file not shown.
Binary file added assets/sfx/positive.ogg
Binary file not shown.
42 changes: 42 additions & 0 deletions bevy_forge.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
/* tslint:disable */
/* eslint-disable */

export type InitInput = RequestInfo | URL | Response | BufferSource | WebAssembly.Module;

export interface InitOutput {
readonly memory: WebAssembly.Memory;
readonly main: (a: number, b: number) => number;
readonly __externref_table_alloc: () => number;
readonly __wbindgen_export_1: WebAssembly.Table;
readonly __wbindgen_exn_store: (a: number) => void;
readonly __wbindgen_malloc: (a: number, b: number) => number;
readonly __wbindgen_realloc: (a: number, b: number, c: number, d: number) => number;
readonly __wbindgen_free: (a: number, b: number, c: number) => void;
readonly __wbindgen_export_6: WebAssembly.Table;
readonly closure1777_externref_shim: (a: number, b: number, c: any) => void;
readonly _dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h118c4e5eb7cf4a5e: (a: number, b: number) => void;
readonly closure8220_externref_shim: (a: number, b: number, c: any, d: any) => void;
readonly _dyn_core__ops__function__FnMut__A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h228f6721d102fdb7: (a: number, b: number, c: number) => void;
readonly __wbindgen_start: () => void;
}

export type SyncInitInput = BufferSource | WebAssembly.Module;
/**
* Instantiates the given `module`, which can either be bytes or
* a precompiled `WebAssembly.Module`.
*
* @param {{ module: SyncInitInput }} module - Passing `SyncInitInput` directly is deprecated.
*
* @returns {InitOutput}
*/
export function initSync(module: { module: SyncInitInput } | SyncInitInput): InitOutput;

/**
* If `module_or_path` is {RequestInfo} or {URL}, makes a request and
* for everything else, calls `WebAssembly.instantiate` directly.
*
* @param {{ module_or_path: InitInput | Promise<InitInput> }} module_or_path - Passing `InitInput` directly is deprecated.
*
* @returns {Promise<InitOutput>}
*/
export default function __wbg_init (module_or_path?: { module_or_path: InitInput | Promise<InitInput> } | InitInput | Promise<InitInput>): Promise<InitOutput>;
Loading

0 comments on commit 9b88201

Please sign in to comment.