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;