1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
//! This crate is a game engine library providing many needed functions.
//! This includes math utilities such as vectors and matrices, a trait for collisions and multiple
//! boxes for modeling objects.

#![cfg_attr(feature = "nightly", feature(const_in_array_repeat_expressions))]
pub mod boxes;
pub mod collide;
pub mod engine;
pub mod error;
pub mod events;
pub mod math;
pub mod network;
pub mod resources;

#[doc(inline)]
pub use error::EngineError;

#[doc(inline)]
pub use engine::GameEngine;

#[doc(inline)]
pub use engine::RaskEngine;