Forgot to commit the breakout module

This commit is contained in:
shivshank 2018-07-25 23:50:17 -04:00
parent 875eeeddc6
commit df5ea104d8

8
src/breakout.rs Normal file
View 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,
}