tui logger w/ patched bevy_ratatui
This commit is contained in:
parent
3fb03cfbcb
commit
78029687d7
10 changed files with 885 additions and 162 deletions
|
|
@ -1,4 +1,3 @@
|
|||
use std::collections::VecDeque;
|
||||
|
||||
use bevy::prelude::*;
|
||||
|
||||
|
|
@ -48,7 +47,7 @@ pub(crate) struct MatchSettings {
|
|||
pub(crate) player_count: u8,
|
||||
}
|
||||
|
||||
pub(crate) fn next_round(mut compass: Res<Compass>) {}
|
||||
pub(crate) fn next_round(_compass: Res<Compass>) {}
|
||||
|
||||
pub(crate) fn init_match(
|
||||
mut commands: Commands,
|
||||
|
|
|
|||
|
|
@ -1,4 +1,3 @@
|
|||
use std::collections::VecDeque;
|
||||
|
||||
use bevy::prelude::*;
|
||||
|
||||
|
|
@ -7,6 +6,6 @@ use crate::tiles::Tile;
|
|||
#[derive(Component)]
|
||||
pub(crate) struct Wall(Vec<Entity>);
|
||||
|
||||
pub(crate) fn build_wall(tiles: Query<&Tile>) {
|
||||
pub(crate) fn build_wall(_tiles: Query<&Tile>) {
|
||||
info!("built a wall!")
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue