diff options
| author | Valentin Popov <valentin@popov.link> | 2026-07-18 18:27:28 +0300 |
|---|---|---|
| committer | Valentin Popov <valentin@popov.link> | 2026-07-18 18:27:28 +0300 |
| commit | 77d38e4c1214af82b8e46d745ae411ff4592f603 (patch) | |
| tree | f7abf4ce89b7967f6fc771d435e3469d4f88c52b /apps/fparkan-game/src/main.rs | |
| parent | 97887496508f9b8aff447f2a3b785e5428a6f6a0 (diff) | |
| download | fparkan-77d38e4c1214af82b8e46d745ae411ff4592f603.tar.xz fparkan-77d38e4c1214af82b8e46d745ae411ff4592f603.zip | |
feat(world): retain mission transform state
Diffstat (limited to 'apps/fparkan-game/src/main.rs')
| -rw-r--r-- | apps/fparkan-game/src/main.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/fparkan-game/src/main.rs b/apps/fparkan-game/src/main.rs index 4facbdc..2ec347e 100644 --- a/apps/fparkan-game/src/main.rs +++ b/apps/fparkan-game/src/main.rs @@ -1702,6 +1702,7 @@ mod tests { slot: 5, }, ], + transforms: Vec::new(), events: Vec::new(), hash: StateHash([0; 32]), }; @@ -1733,6 +1734,7 @@ mod tests { generation: 1, slot: 7, }], + transforms: Vec::new(), events: Vec::new(), hash: StateHash([0; 32]), }; @@ -1787,6 +1789,7 @@ mod tests { generation: 1, slot: 0, }], + transforms: Vec::new(), events: Vec::new(), hash: StateHash([0; 32]), }; |
