From c84a4cf265723a596272d049d6a68f9c5b984f4c Mon Sep 17 00:00:00 2001
From: Louis Capitanchik <contact@louiscap.co>
Date: Fri, 23 Dec 2022 20:53:05 +0000
Subject: [PATCH] Fix missing web inner mod

---
 game_core/src/system/web.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/game_core/src/system/web.rs b/game_core/src/system/web.rs
index 23a311c..44c5d48 100644
--- a/game_core/src/system/web.rs
+++ b/game_core/src/system/web.rs
@@ -12,7 +12,7 @@ mod __plugin {
 	pub struct WebPlugin;
 	impl Plugin for WebPlugin {
 		fn build(&self, app: &mut App) {
-				app.add_startup_system(inner::handle_startup_fullscreen)
+				app.add_startup_system(handle_startup_fullscreen)
 					.add_system_to_stage(
 						CoreStage::First,
 						micro_bevy_web_utils::bevy::emit_touch_events,
-- 
GitLab