obel_api/
lib.rs

1
2
3
4
5
6
7
8
9
10
//! This module is separated into its own crate to enable simple dynamic linking for Bevy, and should not be used directly

#![forbid(unsafe_code)]
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
#![doc(html_logo_url = "assets/icon.png", html_favicon_url = "assets/icon.png")]

// hello
pub use obel_diagnostic as diagnostic;
pub use obel_platform as platform;
pub use obel_reflect as reflect;