mirror of
https://github.com/italicsjenga/mini_gl_fb.git
synced 2024-11-22 23:41:30 +11:00
Forgot to commit the breakout module
This commit is contained in:
parent
875eeeddc6
commit
df5ea104d8
8
src/breakout.rs
Normal file
8
src/breakout.rs
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
use glutin::{GlWindow, EventsLoop};
|
||||||
|
use core::Framebuffer;
|
||||||
|
|
||||||
|
pub struct GlutinBreakout {
|
||||||
|
pub events_loop: EventsLoop,
|
||||||
|
pub gl_window: GlWindow,
|
||||||
|
pub fb: Framebuffer,
|
||||||
|
}
|
Loading…
Reference in a new issue