fix: archi player

This commit is contained in:
2026-04-16 11:00:08 +02:00
parent 7769959135
commit 1eed905e8b
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 />
</>
);
}