Skip to content

Commit b71c14d

Browse files
authored
feat: add dynamic item page to tome (#78)
1 parent dfac385 commit b71c14d

File tree

11 files changed

+489
-343
lines changed

11 files changed

+489
-343
lines changed

src/gameplay/hud/inventory/items.rs

Lines changed: 0 additions & 113 deletions
This file was deleted.

src/gameplay/hud/inventory/mod.rs

Lines changed: 0 additions & 225 deletions
This file was deleted.

src/gameplay/hud/inventory/people.rs

Lines changed: 0 additions & 3 deletions
This file was deleted.

src/gameplay/hud/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ use crate::screens::Screen;
99

1010
pub mod hotbar;
1111
pub mod inspect;
12-
pub mod inventory;
12+
pub mod tome;
1313

1414
pub fn plugin(app: &mut App) {
1515
app.add_plugins((UiWidgetsPlugins, InputDispatchPlugin, TabNavigationPlugin));
1616

17-
app.add_plugins((hotbar::plugin, inspect::plugin, inventory::plugin));
17+
app.add_plugins((hotbar::plugin, inspect::plugin, tome::plugin));
1818

1919
app.add_systems(OnEnter(Screen::Gameplay), (setup_portrait, setup_relic));
2020
}

0 commit comments

Comments
 (0)