usecrate::primitives::button::Button;implButton{/// Updates the button's hover state based on cursor position.
////// # Arguments
////// * `column` - The column (x) coordinate of the cursor
/// * `row` - The row (y) coordinate of the cursor
////// # Returns
////// Nothing (updates internal hover state)
pubfnupdate_hover(&mutself, column:u16, row:u16){self.hovered =self.is_clicked(column, row);}}