1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
mod quad; mod ctx; mod step; mod render; fn main() { println!("Warming up..."); // let mut ctx = ctx::Ctx::new_empty(); // let quad: quad::Node<u8, u8> = quad::Node::new_empty(&mut ctx); render::graphics(); println!("Hello!"); }