ms-toollib 1.4.17 → 1.4.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/ms_toollib.d.ts +2 -2
- package/ms_toollib_bg.js +2 -2
- package/ms_toollib_bg.wasm +0 -0
- package/package.json +1 -1
package/ms_toollib.d.ts
CHANGED
|
@@ -445,8 +445,8 @@ export class VideoActionStateRecorder {
|
|
|
445
445
|
readonly y: number;
|
|
446
446
|
readonly mouse: string;
|
|
447
447
|
readonly useful_level: number;
|
|
448
|
-
readonly
|
|
449
|
-
readonly
|
|
448
|
+
readonly prior_game_board: GameBoard;
|
|
449
|
+
readonly next_game_board: GameBoard;
|
|
450
450
|
readonly comments: string;
|
|
451
451
|
readonly path: number;
|
|
452
452
|
readonly mouse_state: number;
|
package/ms_toollib_bg.js
CHANGED
|
@@ -3466,14 +3466,14 @@ export class VideoActionStateRecorder {
|
|
|
3466
3466
|
/**
|
|
3467
3467
|
* @returns {GameBoard}
|
|
3468
3468
|
*/
|
|
3469
|
-
get
|
|
3469
|
+
get prior_game_board() {
|
|
3470
3470
|
const ret = wasm.videoactionstaterecorder_get_prior_game_board(this.__wbg_ptr);
|
|
3471
3471
|
return GameBoard.__wrap(ret);
|
|
3472
3472
|
}
|
|
3473
3473
|
/**
|
|
3474
3474
|
* @returns {GameBoard}
|
|
3475
3475
|
*/
|
|
3476
|
-
get
|
|
3476
|
+
get next_game_board() {
|
|
3477
3477
|
const ret = wasm.videoactionstaterecorder_get_next_game_board(this.__wbg_ptr);
|
|
3478
3478
|
return GameBoard.__wrap(ret);
|
|
3479
3479
|
}
|
package/ms_toollib_bg.wasm
CHANGED
|
Binary file
|