refactor view/scene to separate modules

This commit is contained in:
2016-09-21 19:38:27 -07:00
parent b8b5bf8ab7
commit 7a9f65115c
10 changed files with 311 additions and 224 deletions

View File

@@ -1,11 +1,15 @@
#![feature(conservative_impl_trait)]
#[macro_use] extern crate gfx;
#[macro_use] extern crate log;
pub mod arena;
pub mod ega;
pub mod scene;
pub mod scenes;
pub mod tile;
pub mod town;
pub mod view;
pub mod vr;
pub mod world;