amberwindow 0.3.14

An easy to use ImmediateMode gui library for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![allow(unused)]
#![allow(dropping_references)]

use macroquad::prelude::*;
use rand::RandomRange;
mod widgets;
pub use widgets::*;
mod display;
pub use display::*;
mod window_manager;
pub use window_manager::*;
mod convert_string;
pub use convert_string::ConvertString;