diff options
Diffstat (limited to 'src/osx')
-rw-r--r-- | src/osx/mod.rs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/osx/mod.rs b/src/osx/mod.rs index df62089..7b362ba 100644 --- a/src/osx/mod.rs +++ b/src/osx/mod.rs @@ -1,7 +1,7 @@ #[cfg(feature = "headless")] pub use self::headless::HeadlessContext; -use {CreationError, Event}; +use {CreationError, Event, MouseCursor}; use CreationError::OsError; use libc; @@ -491,4 +491,8 @@ impl Window { pub fn set_window_resize_callback(&mut self, callback: Option<fn(uint, uint)>) { self.resize = callback; } + + pub fn set_cursor(&self, cursor: MouseCursor) { + unimplemented!() + } } |