render some tiles
This commit is contained in:
parent
bea146d439
commit
d506a25716
8 changed files with 129 additions and 60 deletions
|
|
@ -1,4 +1,5 @@
|
|||
use bevy::prelude::*;
|
||||
use tracing::instrument;
|
||||
|
||||
use crate::tiles::{self, *};
|
||||
|
||||
|
|
@ -11,8 +12,7 @@ impl Plugin for Riichi {
|
|||
fn build(&self, app: &mut App) {
|
||||
app.init_resource::<Compass>()
|
||||
.add_systems(Startup, init_match)
|
||||
.add_systems(Startup, tiles::init_tiles)
|
||||
.add_systems(Update, wall::build_wall)
|
||||
.add_systems(Startup, (tiles::init_tiles, wall::build_wall).chain())
|
||||
// semicolon stopper
|
||||
;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue