diff options
Diffstat (limited to 'source/dw/app.rs')
-rw-r--r-- | source/dw/app.rs | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/source/dw/app.rs b/source/dw/app.rs index caba0c1..14b2292 100644 --- a/source/dw/app.rs +++ b/source/dw/app.rs @@ -2,18 +2,26 @@ extern crate glfw; +use gl::types::GLuint; use glfw::{Glfw,Window,WindowEvent}; +use std::sync::atomic::AtomicBool; use std::sync::mpsc::Receiver; pub struct Gfx { - evt: Receiver<(f64,WindowEvent)>, - glfw: Glfw, - win: Window, + evt: Receiver<(f64,WindowEvent)>, + glfw: Glfw, + shdprg: GLuint, + win: Window, } pub struct App { } +static mut GOTINT: AtomicBool = AtomicBool::new(false); + +pub mod getshdprg; pub mod ini; pub mod inigfx; +pub mod inisig; pub mod lop; +pub mod new; |