Skip to content

Commit

Permalink
Remove global settings
Browse files Browse the repository at this point in the history
  • Loading branch information
IceSentry committed Jul 8, 2024
1 parent 6e60c16 commit 2269060
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,13 @@ use bevy::{
pub struct InfiniteGridPlugin;

impl Plugin for InfiniteGridPlugin {
fn build(&self, app: &mut App) {
app.init_resource::<GlobalInfiniteGridSettings>();
}
fn build(&self, _app: &mut App) {}

fn finish(&self, app: &mut App) {
render::render_app_builder(app);
}
}

#[derive(Resource, Default)]
pub struct GlobalInfiniteGridSettings {}

#[derive(Component, Default)]
pub struct InfiniteGrid;

Expand Down

0 comments on commit 2269060

Please sign in to comment.