5 lines
117 B
Rust
5 lines
117 B
Rust
use crate::input::InputDevice;
|
|
|
|
pub fn grab_input_device(kb: InputDevice, grab: bool) {
|
|
get!().grab(kb, grab);
|
|
}
|