orbtk 0.1.1

The Orbital Widget Toolkit
use super::{Color, Point, Rect};

pub trait Renderer {
    fn clear(&mut self, color: Color);
    fn char(&mut self, pos: Point, c: char, color: Color);
    fn rect(&mut self, rect: Rect, color: Color);
}