fix: archi player

This commit is contained in:
Tom Boullay
2026-04-16 11:00:08 +02:00
parent 71c22386be
commit 269cf81595
4 changed files with 63 additions and 25 deletions
+11
View File
@@ -0,0 +1,11 @@
import { PlayerCamera } from "@/world/player/PlayerCamera";
import { PlayerController } from "@/world/player/PlayerController";
export function PlayerComponent(): React.JSX.Element {
return (
<>
<PlayerCamera />
<PlayerController />
</>
);
}