bismuth 0.0.4

A 3D game world represented as cubes in an oct-tree that can be manipulated in real time.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod activity;
mod context;
mod harness;

pub use self::activity::{Activity, BoxActivity, RenderResult, Transition, UpdateResult};
pub use self::context::{Context, ContextView, RenderContextView, State, UpdateContextView,
                        WindowView};
pub use self::harness::Harness;

#[derive(Debug, Fail)]
pub enum FrameworkError {
    #[fail(display = "")]
    Activity,
    #[fail(display = "")]
    ActivityStack,
}