mix 0.2.1

mix - a rust ui library cooked up in half a day! (expect extra salt)
#[derive(Clone, Debug)]
pub struct Debug {
    pub enabled: bool,
}

impl Debug {
    pub fn new() -> Self {
        Self {
            enabled: false,
        }
    }
    
    pub fn log(&self, message: &str) {
        if self.enabled {
            println!("[DEBUG] {}", message);
        }
    }
    
    pub fn error(&self, message: &str) {
        if self.enabled {
            eprintln!("[ERROR] {}", message);
        }
    }
}