Skip to content
This repository was archived by the owner on Jan 1, 2026. It is now read-only.

Commit 1c59140

Browse files
committed
starting with trhe structure
1 parent 799531b commit 1c59140

3 files changed

Lines changed: 17 additions & 1 deletion

File tree

src/asset.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
//#[macro_export]
2+
macro_rules! manifest {
3+
() => {
4+
5+
};
6+
}

src/game.rs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
pub struct Game {
2+
world: bevy_ecs::world::World,
3+
}
4+
5+
impl Game {
6+
pub fn new() {
7+
8+
}
9+
}

src/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
1+
pub mod game;
2+
pub mod asset;

0 commit comments

Comments
 (0)