resonance 0.1.0

A modular game engine. Heavy work in progress.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12

use crate::app::Engine;

pub trait EngineExt {
    fn run(self);
}

impl EngineExt for Engine {
    fn run(self) {
        crate::window::runner::run(self);
    }
}