bevyrapidqoi

Bevy support for the QOI (Quite OK Image) format. Fork of bevyqoi based on the rapidqoi crate.

Usage

Add the QOIPlugin to your app, and you're good to go.

```rs use bevy::prelude::*; use bevy_qoi::QOIPlugin;

fn main() { App::new() // ... .add_plugin(QOIPlugin) // ... .run(); } ```