moved some things around.

Signed-off-by: Sienna Meridian Satterwhite <sienna@r3t.io>
This commit is contained in:
2025-12-14 21:25:52 +00:00
parent 52953c531a
commit 8f829e9537
16 changed files with 861 additions and 298 deletions

View File

@@ -1,7 +1,11 @@
//! Platform-specific input bridges
//! Platform abstraction layer
//!
//! This module contains platform-specific code for capturing input
//! and converting it to engine-agnostic InputEvents.
//! This module provides platform-agnostic interfaces for OS/hardware interaction:
//! - **input**: Abstract input events (keyboard, mouse, touch, gestures)
//! - **desktop**: Concrete winit-based implementation for desktop platforms
//! - **ios**: Concrete UIKit-based implementation for iOS
pub mod input;
#[cfg(target_os = "ios")]
pub mod ios;