Remove dead code

This commit is contained in:
Jan Hohenheim 2024-03-03 23:33:21 +01:00
parent 8a174c6c8b
commit 64b26b2a70
No known key found for this signature in database
2 changed files with 1 additions and 15 deletions

View File

@ -1,11 +0,0 @@
use bevy::pbr::NotShadowCaster;
use bevy::prelude::*;
pub struct LightingPlugin;
impl Plugin for LightingPlugin {
fn build(&self, app: &mut App) {
app
// FIXME: adding these since they are missing
.register_type::<NotShadowCaster>();
}
}

View File

@ -1,9 +1,6 @@
pub mod camera;
pub use camera::*;
pub mod lighting;
pub use lighting::*;
//pub mod relationships;
//pub use relationships::*;
@ -22,6 +19,6 @@ use bevy::prelude::*;
pub struct CorePlugin;
impl Plugin for CorePlugin {
fn build(&self, app: &mut App) {
app.add_plugins((LightingPlugin, CameraPlugin, PhysicsPlugin));
app.add_plugins((CameraPlugin, PhysicsPlugin));
}
}