autocommit 2022-01-02 15:13:33 CET
This commit is contained in:
commit
d6172b273f
50 changed files with 5807 additions and 0 deletions
14
src/state.rs
Normal file
14
src/state.rs
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
use crate::async_engine::AsyncEngine;
|
||||
use crate::event_loop::EventLoopRef;
|
||||
use crate::globals::Globals;
|
||||
use crate::utils::numcell::NumCell;
|
||||
use crate::wl_client::WlClients;
|
||||
use std::rc::Rc;
|
||||
|
||||
pub struct State {
|
||||
pub eng: Rc<AsyncEngine>,
|
||||
pub el: EventLoopRef,
|
||||
pub clients: WlClients,
|
||||
pub next_name: NumCell<u32>,
|
||||
pub globals: Globals,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue