use notan::draw::*;
use notan::prelude::*;
#[notan_main]
fn main() -> Result<(), String> {
let win = WindowConfig::default()
.set_transparent(true)
.set_decorations(false);
notan::init()
.add_config(win)
.add_config(DrawConfig) // Simple way to add the draw extension
.draw(draw)
.build()
}
fn draw(gfx: &mut Graphics) {
let mut draw = gfx.create_draw();
draw.clear(Color::TRANSPARENT);
draw.triangle((400.0, 100.0), (100.0, 500.0), (700.0, 500.0))
.color(Color::MAGENTA);
gfx.render(&draw);
}