//! Contains the used structs and enums to get the mouse position.
//!// Position struct, which contains x and y coordinates.
pubstructPosition{pubx:i32,
puby:i32}/// Mouse Position enum, which can either be a position or an error.
pubenumMouse{
Position { x:i32, y:i32},
Error
}