use crate::platform::*;
pub const DEFAULT_SCALE: f32 = 2.;
pub const DEFAULT_TARGET_FPS: f64 = 60.;
pub trait RuntimeRenderer {
type Error: std::error::Error + 'static;
fn frame(&mut self) -> Result<(), Self::Error>;
fn window_resized(&mut self, size: LogicalSize);
}