//! Core type definitions for mouse input handling
//!
//! This module contains the fundamental types used throughout the crate,
//! including button definitions, event types, and platform identifiers.
/// Mouse button enumeration and related functionality
/// Trait definition for code mapping between buttons and platform-specific codes
/// Mouse event types and scroll direction definitions
/// Platform identifiers for cross-platform compatibility
pub use Button;
pub use CodeMapper;
pub use ;
pub use Platform;