12 lines
257 B
Rust
12 lines
257 B
Rust
|
|
#![deny(unsafe_op_in_unsafe_fn)]
|
||
|
|
|
||
|
|
mod application;
|
||
|
|
mod responder;
|
||
|
|
mod view;
|
||
|
|
mod window;
|
||
|
|
|
||
|
|
pub(crate) use self::application::NSApplication;
|
||
|
|
pub(crate) use self::responder::NSResponder;
|
||
|
|
pub(crate) use self::view::NSView;
|
||
|
|
pub(crate) use self::window::NSWindow;
|