main_game_loop 0.6.0

A tool collection for building a winit game loop
Documentation
<div align="center">

# main_game_loop

[![dependency status](https://deps.rs/repo/github/Overpeek/main_game_loop/status.svg)](https://deps.rs/repo/github/Overpeek/main_game_loop)
[![build status](https://github.com/Overpeek/main_game_loop/actions/workflows/rust.yml/badge.svg)](https://github.com/Overpeek/main_game_loop/actions)
[![crates.io](https://img.shields.io/crates/v/main_game_loop.svg?label=main_game_loop)](https://crates.io/crates/main_game_loop)
[![docs.rs](https://docs.rs/main_game_loop/badge.svg)](https://docs.rs/main_game_loop/)

</div>

### Example usage with some random `Engine`

```rust
struct App {
    window: Window,
    ws: WindowState,
    update_loop: UpdateLoop,
}

impl App {
    fn init(target: &EventLoopTarget) -> Self {
        let window = WindowBuilder::new().build(target).unwrap();
        let ws = WindowState::new(&window);
        let update_loop = UpdateLoop::new(UpdateRate::PerSecond(60));

        Self {
            window,
            ws,
            update_loop,
        }
    }

    fn event(&mut self, event: Event, _: &EventLoopTarget, control: &mut ControlFlow) {
        self.ws.event(&event);

        if self.ws.should_close {
            *control = ControlFlow::Exit;
        }
    }

    fn draw(&mut self) {
        self.update_loop.update(|| {
            // update();
        });

        // draw();
    }
}

fn main() {
    run_app!(App);
}
```

### Example usage with different init, event and draw functions

```rust
use main_game_loop::prelude::*;

struct App {
    // ...
}

async fn init(target: &EventLoopTarget) -> App {
    // init

    App {
        // ..
    }
}

impl App {
    fn draw(&mut self) {
        // draw
    }
}

#[tokio::main]
async fn main() {
    run_app!(
        async init,
        |_, _, _, _| {
            // events
        },
        App::draw
    );
}
```