import React from 'react'; import { Button } from '../components/ui/Button'; import { ArrowLeft, Dice5, Construction } from 'lucide-react'; interface GameProps { onExit: () => void; } export const Ludo: React.FC = ({ onExit }) => { return (

LUDO KING

Data Pending

The classic board game is currently being digitized. Multiplayer protocols initializing...

); };