summaryrefslogtreecommitdiff
path: root/source/dw/app.rs
blob: caba0c174dd5141e4980479fd15ae666f9dc5abf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// 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;
pub mod lop;