alma 0.1.1

A Bevy-native modal text editor with Vim-style navigation.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Plugin diagnostic messages.

use crate::plugin::PluginOperationalEvent;
use bevy::prelude::Message;

/// Redacted plugin operational event emitted from ECS adapters.
#[derive(Clone, Debug, Eq, Message, PartialEq)]
pub struct PluginOperationalEventReported {
    /// Payload-free operational event.
    pub event: PluginOperationalEvent,
}