1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Copyright 2020 Kevin Reid under the terms of the MIT License as detailed
// in the accompanying file README.md or <http://opensource.org/licenses/MIT>.

#![allow(clippy::collapsible_if)]
#![warn(clippy::cast_lossless)]

// TODO: consider exporting individual symbols instead of the modules, because
// the modules are mostly per-data-type rather than being convenient usage bundles.
// Or have modules reexport by API consumer (world-builder versus renderer etc.)

pub mod block;
pub mod blockgen;
pub mod camera;
pub mod demo_content;
pub mod drawing;
mod lighting;
pub mod math;
mod physics;
pub mod raycast;
pub mod space;
pub mod triangulator;
pub mod universe;
mod util;
pub mod worldgen;