1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
#![allow(unused_mut)]
#![allow(unused_imports)]
#![allow(dead_code)]

#[macro_use]
extern crate gfx;

pub mod events;
pub mod graphics;

pub use graphics::camera;
pub use graphics::pipeline::Vertex;
pub use graphics::rect;