Skip to main content

antbox_engine/
lib.rs

1//! The `antbox` engine encapsulates all state evolution in a standalone thread
2#![deny(unsafe_code, missing_docs)]
3
4mod notification;
5mod notifier;
6mod spawn;
7mod ticktimer;
8
9pub use self::notification::Notification;
10pub use self::notifier::Notifier;
11pub use self::spawn::spawn;
12pub use self::ticktimer::TickTimer;