Skip to main content

euv_engine/input/
type.rs

1use crate::*;
2
3/// A set of keyboard key code strings currently in a given state.
4pub type KeyStateSet = HashSet<String>;
5
6/// A map from touch identifier to touch position.
7pub type TouchPointMap = HashMap<i32, Vector2D>;