1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! # Fornjot Window Abstraction
//!
//! [Fornjot] is an early-stage b-rep CAD kernel written in Rust. The kernel is
//! split into multiple libraries that can be used semi-independently, and this
//! is one of those.
//!
//! This library provides a window abstraction based on Winit.
//!
//! [Fornjot]: https://www.fornjot.app/

mod display;
mod window;

pub use self::{
    display::{display, Error},
    window::WindowError,
};