Skip to main content

antbox_engine/
notification.rs

1use antbox_state::State;
2use derive_more::From;
3use derive_new::new;
4
5/// A [Notification] from the engine to the app
6#[derive(Debug, From, new)]
7pub enum Notification {
8    /// A new antbox state is available
9    NewState(State),
10}