coffee 0.4.1

An opinionated 2D game engine focused on simplicity, explicitness, and type-safety
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[cfg(not(any(debug_assertions, feature = "debug")))]
mod null;

#[cfg(any(debug_assertions, feature = "debug"))]
mod basic;

#[cfg(not(any(debug_assertions, feature = "debug")))]
pub use null::Debug;

#[cfg(any(debug_assertions, feature = "debug"))]
pub use basic::Debug;