diff options
Diffstat (limited to 'source/dw/app.rs')
-rw-r--r-- | source/dw/app.rs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/source/dw/app.rs b/source/dw/app.rs new file mode 100644 index 0000000..dea50da --- /dev/null +++ b/source/dw/app.rs @@ -0,0 +1,18 @@ +// Copyright 2023 Gabriel Jensen. + +extern crate glfw; + +use glfw::{Glfw,Window,WindowEvent}; +use std::sync::mpsc::Receiver; + +pub struct Gfx { + evt: Receiver<(f64,WindowEvent)>, + glfw: Glfw, + win: Window, +} + +pub struct App { +} + +pub mod ini; +pub mod inigfx; |