Separated goals and walls
This commit is contained in:
10
src/level_structure.rs
Normal file
10
src/level_structure.rs
Normal file
@@ -0,0 +1,10 @@
|
||||
use bevy::prelude::*;
|
||||
use bevy_ecs_ldtk::prelude::*;
|
||||
|
||||
#[derive(Default, Component)]
|
||||
pub struct Wall;
|
||||
|
||||
#[derive(Default, Bundle, LdtkIntCell)]
|
||||
pub struct WallBundle {
|
||||
wall: Wall,
|
||||
}
|
||||
Reference in New Issue
Block a user