drawrs 0.2.0

A tracing engine for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
mod choices;
mod drawing;
mod image_processing;
mod utils;

use drawing::app::DrawingApp;

fn main() {
    DrawingApp::run();
}