diff --git a/apps/client/src/scenes/lobby/LobbyScene.tsx b/apps/client/src/scenes/lobby/LobbyScene.tsx index 5d9485c..578fb65 100644 --- a/apps/client/src/scenes/lobby/LobbyScene.tsx +++ b/apps/client/src/scenes/lobby/LobbyScene.tsx @@ -14,6 +14,7 @@ return ( <> + \n{" "} -
🔄

@@ -59,128 +59,145 @@ スマホを横向きにしてください。

-

ルーム: {room.roomId} (待機中)

+ {/* 🌟 ここから左右に分けるコンテナ (flexDirection: "row" に変更) */}
-

- 参加プレイヤー ({room.players.length}/{room.maxPlayers}) -

- -
+ ゲームスタート + + ) : ( +
+ ホストの開始を待っています... +
+ )} +
-
- {isMeOwner ? ( - - ) : ( -
+
- )} + {room.players.map((p: roomTypes.RoomMember) => ( +
  • + {p.id === myId ? "🟢" : "⚪"} + + {p.name} + + {p.isOwner && 👑} + {p.isReady && ( + + ✅ + + )} +
  • + ))} + +