Removed warnings

This commit is contained in:
Franklin 2023-11-12 14:37:11 -04:00
parent 61f33357a4
commit 01bd24bf19
1 changed files with 2 additions and 2 deletions

View File

@ -4,10 +4,10 @@ use bevy::prelude::*;
/// # Inventory Screen
/// Should contain player inventory and if player is looting something as well
pub fn setup_inventory_screen(mut commands: Commands) {}
pub fn setup_inventory_screen(mut _commands: Commands) {}
pub fn update_inventory_screen(
mut commands: Commands,
mut _commands: Commands,
//mut event_reader: EventReader<LootContainerEvent>,
) {