sust 0.3.1

A 2d rust rendering engine powered by sfml & egui that mainly renders shapes. This can be used to visualize algorithms on a grid based surface
Documentation
1
2
3
4
5
6
7
8
9
10

struct App;
impl sust::App for App {}

fn main() {
    sust::run(sust::Config {
        title: String::from("Sussy window uwu"),
        .. sust::Config::default()
    }, sust::GuiConfig::default(), App);
}