gfx_types 0.2.0

Core graphics types shared between kernel and userspace - RedstoneOS
Documentation
1
2
3
4
5
6
7
8
9
//! # Input Module
//!
//! Tipos de cursor e input gráfico.

mod cursor;
mod touch;

pub use cursor::{CursorHotspot, CursorType};
pub use touch::{GestureType, SwipeDirection, TouchId, TouchPhase, TouchPoint};