This commit is contained in:
2026-04-28 19:36:39 +08:00
parent a9febe7678
commit f0471a4f8d
206 changed files with 18456 additions and 10133 deletions

View File

@@ -1,9 +1,10 @@
import {
type RuntimeSaveCheckpointInput as SharedRuntimeSaveCheckpointInput,
type SavedGameSnapshot as SharedSavedGameSnapshot,
type SavedGameSnapshotInput as SharedSavedGameSnapshotInput,
} from '../../packages/shared/src/contracts/runtime';
import type {GameState, StoryMoment} from '../types';
import type {BottomTab} from '../types/navigation';
import type { GameState, StoryMoment } from '../types';
import type { BottomTab } from '../types/navigation';
export type SavedGameSnapshot = SharedSavedGameSnapshot<
GameState,
@@ -16,3 +17,6 @@ export type SavedGameSnapshotInput = SharedSavedGameSnapshotInput<
BottomTab,
StoryMoment
>;
export type RuntimeSaveCheckpointInput =
SharedRuntimeSaveCheckpointInput<BottomTab>;