update flow

This commit is contained in:
math-pixel
2026-05-11 11:03:01 +02:00
parent 900133223e
commit 2bab025ffa
11 changed files with 415 additions and 6 deletions
+3
View File
@@ -2,6 +2,7 @@ import { Suspense } from "react";
import { Canvas } from "@react-three/fiber";
import { Crosshair } from "@/components/ui/Crosshair";
import { InteractPrompt } from "@/components/ui/InteractPrompt";
import { IntroUI, BienvenueDisplay } from "@/components/ui/IntroUI";
import { DebugPerf } from "@/utils/debug/DebugPerf";
import { World } from "@/world/World";
@@ -16,6 +17,8 @@ function App(): React.JSX.Element {
</Canvas>
<Crosshair />
<InteractPrompt />
<IntroUI />
<BienvenueDisplay />
</>
);
}