diff options
author | Andrey Lesnikov <ozkriff@gmail.com> | 2015-01-13 13:58:05 +0300 |
---|---|---|
committer | Andrey Lesnikov <ozkriff@gmail.com> | 2015-01-13 13:58:05 +0300 |
commit | d11f63a749b73148defb43b670b8ef8206437194 (patch) | |
tree | 8d80c3801c55f599fdd9a4773fb0684d4b94adbd /src/android | |
parent | 05a03fb6a1232621e570fe46a82c6088c74696a9 (diff) | |
download | glutin-d11f63a749b73148defb43b670b8ef8206437194.tar.gz glutin-d11f63a749b73148defb43b670b8ef8206437194.zip |
Fixed android: Added 'MouseCursor' import
Diffstat (limited to 'src/android')
-rw-r--r-- | src/android/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/android/mod.rs b/src/android/mod.rs index 0c88709..19f4870 100644 --- a/src/android/mod.rs +++ b/src/android/mod.rs @@ -3,7 +3,7 @@ extern crate android_glue; use libc; use std::ffi::{CString}; use std::sync::mpsc::{Receiver, channel}; -use {CreationError, Event, WindowBuilder}; +use {CreationError, Event, WindowBuilder, MouseCursor}; use CreationError::OsError; use events::ElementState::{Pressed, Released}; use events::Event::{MouseInput, MouseMoved}; |