buttery-engine 0.1.0

A very simplistic game-engine written in rust. This is a learning project for me, so no promises on it's performance or stability.
Documentation
1
2
3
4
5
use crate::engine::ButteryEngine;

pub trait ButteryWindowingSystem {
    fn run(&self, engine: ButteryEngine) -> anyhow::Result<()>;
}