Skip to main content

zenthra_core/
response.rs

1// crates/zenthra-core/src/response.rs
2
3#[derive(Debug, Clone, Copy, Default)]
4pub struct Response {
5    pub clicked: bool,
6    pub hovered: bool,
7    pub pressed: bool,
8}
9
10impl Response {
11    pub fn new() -> Self {
12        Self::default()
13    }
14}