bevy 0.14.2

A refreshingly simple data-driven game engine and app framework
Documentation
1
2
3
4
5
6
7
//! An empty application with default plugins.

use bevy::prelude::*;

fn main() {
    App::new().add_plugins(DefaultPlugins).run();
}