1
0
Fork 0
forked from wry/wry

autocommit 2022-01-25 16:45:44 CET

This commit is contained in:
Julian Orth 2022-01-25 16:45:44 +01:00
parent 0336bf3bde
commit c340df0d08
59 changed files with 3085 additions and 1710 deletions

View file

@ -7,8 +7,8 @@ linear_ids!(SeatIds, SeatId);
pub trait Output {
fn id(&self) -> OutputId;
fn removed(&self) -> bool;
fn width(&self) -> u32;
fn height(&self) -> u32;
fn width(&self) -> i32;
fn height(&self) -> i32;
fn on_change(&self, cb: Rc<dyn Fn()>);
}