Guess I should put this under version control LOL
This commit is contained in:
commit
2035318460
73 changed files with 8836 additions and 0 deletions
23
cocoa/src/lib.rs
Normal file
23
cocoa/src/lib.rs
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
//! This crate provides a Cocoa backend for Alchemy, the Rust GUI framework.
|
||||
//! This means that, on macOS, you'll be using native `NSView`, `NSTextField`,
|
||||
//! and other assorted controls. Where possible, it attempts to opt into
|
||||
//! smoother rendering paths (e.g, layer-backed views, drawing subview layers
|
||||
//! together where appropriate).
|
||||
//!
|
||||
//! # License
|
||||
//!
|
||||
//! Copyright 2018 Ryan McGrath. See the license files included in the root repository
|
||||
//! for more information, along with credit to applicable parties for who this project
|
||||
//! would not have happened.
|
||||
//!
|
||||
//! # Code of Conduct
|
||||
//!
|
||||
//! Please note that this project is released with a [Contributor Code of
|
||||
//! Conduct][coc]. By participating in this project you agree to abide by its terms.
|
||||
//!
|
||||
//! [coc]: https://www.contributor-covenant.org/version/1/4/code-of-conduct
|
||||
|
||||
pub mod color;
|
||||
pub mod app;
|
||||
pub mod view;
|
||||
pub mod window;
|
||||
Reference in a new issue