//! Apple-platform niceties: impact [`haptics`], the top [`safe_area`] inset, and
//! opening outbound [`links`]. Thin, fire-and-forget wrappers over
//! `Sources/Platform/PlatformBridge.swift`; no-ops off iOS (links shell out to `open` on
//! macOS so the flow is debuggable on desktop).
//!
//! These are plain functions — call them from any system. There's no plugin and
//! no state to wire.
//!
//! ```no_run
//! use bevy_ios_toolkit::platform::{haptics, safe_area, links, Haptic};
//!
//! haptics::play(Haptic::Light);
//! let inset = safe_area::top();
//! links::open("https://example.com");
//! ```
pub use Haptic;