Added modifiers to scroll wheel eevent

This commit is contained in:
Mikayla Maki 2022-08-19 12:10:12 -07:00
parent a806634b82
commit efd3247ce4
7 changed files with 16 additions and 1 deletions

View file

@ -24,6 +24,10 @@ pub struct ScrollWheelEvent {
pub position: Vector2F,
pub delta: Vector2F,
pub precise: bool,
pub ctrl: bool,
pub alt: bool,
pub shift: bool,
pub cmd: bool,
}
#[derive(Hash, PartialEq, Eq, Copy, Clone, Debug)]