graphicility 0.3.0

A Minimal Graphics Library
Documentation
1
2
3
4
5
6
7
8
9
10
11
use graphicility::run;

fn main() {
    run(|ctx|{
        let input = ctx.input();
        
        if input.mouse_pressed(graphicility::MouseButton::Left){
            println!("adsa");
        }
    });
}