8 lines
213 B
TypeScript
8 lines
213 B
TypeScript
import type { SceneLoadingState } from "@/types/world/sceneLoading";
|
|
|
|
export const INITIAL_SCENE_LOADING_STATE: SceneLoadingState = {
|
|
currentStep: "Initialisation du jeu",
|
|
progress: 0,
|
|
status: "loading",
|
|
};
|