flo_ui 0.1.0

Implementation-free user interface description library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use super::super::control::*;

///
/// Possible events that can be sent to the UI
/// 
#[derive(Clone, PartialEq, Serialize, Deserialize, Debug)]
pub enum UiEvent {
    /// Performs the specified action
    Action(Vec<String>, String, ActionParameter),

    /// Sends a tick to all the controllers
    Tick
}