ui/src/gui_handler/gui/topgui.rs
2025-03-04 18:18:08 +01:00

20 lines
806 B
Rust

/// A trait that is used by the gui handler as the target for input
use anyhow::Result;
use ecs::World;
pub trait TopGui: Send + Sync {
/// Decline method which is executed on `InputMap::B` press
fn decline(&self, world: &mut World) -> Result<()>;
/// Method which is executed on `InputMap::RightButton` press
///
/// # Arguments
/// * `second_level` adds support for multiple tab layers, e.g. RB and RT press on controller
fn next_tab(&self, world: &mut World, second_level: bool) -> Result<()>;
/// Method which is executed on `InputMap::LeftButton` press
/// ///
/// # Arguments
/// * `second_level` adds support for multiple tab layers, e.g. RB and RT press on controller
fn previous_tab(&self, world: &mut World, second_level: bool) -> Result<()>;
}