voxelize 1.0.0

A fast multiplayer voxel engine.
Documentation
1
2
3
4
5
6
7
8
9
10
use std::fmt;

#[derive(Debug, Clone)]
pub struct AddWorldError;

impl fmt::Display for AddWorldError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "could not add world.")
    }
}