feat: redone visualization to be human-generated

This commit is contained in:
Rendo 2026-08-01 23:44:56 +05:00
commit 5b4ad9a47a
9 changed files with 214 additions and 24 deletions

View file

@ -0,0 +1,14 @@
use bevy::prelude::*;
use game::GameViewPlugin;
pub mod ui;
pub mod game;
pub struct ViewPlugin;
impl Plugin for ViewPlugin {
fn build(&self, app: &mut App) {
app.add_plugins(GameViewPlugin);
}
}