From 2269060859cbd4e85384b00e3aed393f2a7f1822 Mon Sep 17 00:00:00 2001 From: IceSentry Date: Mon, 8 Jul 2024 13:43:11 -0400 Subject: [PATCH] Remove global settings --- src/lib.rs | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 1f066ee..4fff644 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -9,18 +9,13 @@ use bevy::{ pub struct InfiniteGridPlugin; impl Plugin for InfiniteGridPlugin { - fn build(&self, app: &mut App) { - app.init_resource::(); - } + 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;