This commit is contained in:
Hanno Braun 2024-11-15 18:26:00 +01:00
parent 8065543d8e
commit 8acfd105ff
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
//! User input parsing and propagation.
mod event;
mod handler;
pub mod handler;
pub use self::{event::InputEvent, handler::handle_event};
pub use self::event::InputEvent;

View File

@ -4,7 +4,7 @@ use tracing::warn;
use crate::{
camera::{Camera, FocusPoint},
graphics::{DrawConfig, Renderer},
input::handle_event,
input::handler::handle_event,
InputEvent, NormalizedScreenPosition, RendererInitError, Screen,
ScreenSize,
};