//! This module contains event-related types.
usecrate::gfx::RenderContext;/// This type allows interactions with the event loop.
pubtraitEventHandler{fninit(&mutself, r:&mut RenderContext);fnupdate(&mutself, dt:f32);fnredraw(&mutself, r:&mut RenderContext);}