Move ship & bullet to the objects module

This commit is contained in:
2025-08-11 22:47:48 -05:00
parent f5ff7c8779
commit d8a83b77c2
3 changed files with 9 additions and 10 deletions

View File

@@ -23,3 +23,9 @@ impl AsteroidSize {
}
}
}
#[derive(Component)]
pub struct Ship;
#[derive(Component)]
pub struct Bullet;