1
 2
 3
 4
 5
 6
 7
 8
 9
10
#![cfg_attr(feature = "dev", allow(unstable_features))]
#![cfg_attr(feature = "dev", feature(plugin))]
#![cfg_attr(feature = "dev", plugin(clippy))]

#[macro_use]
extern crate glium;
extern crate tile_net;

pub mod renderer;
pub use renderer::Renderer as Ren;