import { WORLD_BOUNDS_CONFIG } from "@/data/world/worldBoundsConfig"; export function WorldWallsCollision(): React.JSX.Element | null { if (!WORLD_BOUNDS_CONFIG.enabled) { return null; } const { center, size, wallHeight, wallThickness } = WORLD_BOUNDS_CONFIG; const [width, depth] = size; const wallY = center[1] + wallHeight / 2; const halfWidth = width / 2; const halfDepth = depth / 2; return ( ); }