blob: af3e81c28202870950efb36fe07619389846f0f9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// Copyright 2023 Gabriel Jensen.
use crate::dw::app::App;
use crate::dw::app::Gfx;
//extern crate gl;
extern crate glfw;
use glfw::{Context};
impl App {
pub fn lop(&mut self,gfx: &mut Gfx) -> i8 {
eprintln!("entering main loop");
while !gfx.win.should_close() {
gfx.glfw.poll_events();
}
return -0x45;
}
}
|