zoodex/src/ui/component.rs

9 lines
121 B
Rust
Raw Normal View History

2025-02-05 14:57:07 +01:00
use gtk4 :: * ;
use gtk4 :: prelude :: * ;
pub trait Component {
fn get_widget ( & self ) -> & impl IsA <Widget> ;
}