From 02d92df7ca80e1922af99eb5b0dc2e9865946c2c Mon Sep 17 00:00:00 2001 From: Jonni Liljamo Date: Mon, 8 May 2023 18:12:21 +0300 Subject: [PATCH] feat(client): add CardPlugin in GamePlugin --- client/src/plugins/game/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/client/src/plugins/game/mod.rs b/client/src/plugins/game/mod.rs index c08658d..857f98d 100644 --- a/client/src/plugins/game/mod.rs +++ b/client/src/plugins/game/mod.rs @@ -24,6 +24,7 @@ impl Plugin for GamePlugin { fn build(&self, app: &mut App) { app.insert_resource(GameData::default()) .add_plugin(ui::GameUIPlugin) + .add_plugin(card::CardPlugin) .add_system(game_setup.in_schedule(OnEnter(AppState::InGame))); } } -- 2.44.1