comfy 0.4.0

A comfy 2d game engine in Rust.
Documentation
use comfy::*;

simple_game!("Fullscreen", GameState, config, setup, update);

fn config(config: GameConfig) -> GameConfig {
    GameConfig { fullscreen: true, ..config }
}

pub struct GameState {}

impl GameState {
    pub fn new(_c: &EngineState) -> Self {
        Self {}
    }
}

fn setup(_state: &mut GameState, _c: &mut EngineContext) {}

fn update(_state: &mut GameState, _c: &mut EngineContext) {
    draw_text("Comfy likes fullscreen", Vec2::ZERO, PINK, TextAlign::Center);
}