cacao 0.3.2

Rust bindings for AppKit (macOS/Airyx/GNUStep, beta) and UIKit (iOS/tvOS, alpha).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! iOS-specific implementations.
//!
//! In general, this framework tries to make things "just work" with regards to AppKit and UIKit
//! differences. With that said, there are certain things that just don't map between the two - for
//! iOS, these things are contained here.

mod app;
pub use app::*;

mod scene;
pub use scene::*;

mod window;
pub use window::*;