astre 0.1.2

A modular game framework for optimised 2d games
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use bevy::prelude::*;

pub struct AstrePlugins;

impl Plugin for AstrePlugins {
    fn build(&self, app: &mut App) {
        app.add_systems(Startup, hello_world_system);
    }
}

fn hello_world_system() {
    println!("Hello world from Astre!");
}