diff options
| author | nathan <nathansmith@disroot.org> | 2026-01-08 02:48:07 +0000 |
|---|---|---|
| committer | nathan <nathansmith@disroot.org> | 2026-01-08 02:48:07 +0000 |
| commit | 6e0fabd2798d7e602e243a35a922703cde7ef750 (patch) | |
| tree | a2b73295756c0ac8afe984b2bc1d92a18c465a71 /src/ui.c | |
| parent | 75338c84cca4f0dad1fb1d79f0db42922a3ea6b5 (diff) | |
| download | FindThings-6e0fabd2798d7e602e243a35a922703cde7ef750.tar.gz FindThings-6e0fabd2798d7e602e243a35a922703cde7ef750.tar.bz2 FindThings-6e0fabd2798d7e602e243a35a922703cde7ef750.zip | |
I feel like a java programmer
Diffstat (limited to 'src/ui.c')
| -rw-r--r-- | src/ui.c | 24 |
1 files changed, 24 insertions, 0 deletions
@@ -227,3 +227,27 @@ void updateInteractionMenu(InteractionMenu* menu, Game* game) position.y += fontSize; } } + +void initInventory(Inventory* inventory) +{ + inventory->visable = false; + inventory->itemCount = 0; +} + +void showInventory(Inventory* inventory) +{ + inventory->visable = true; +} + +void hideInventory(Inventory* inventory) +{ + inventory->visable = false; +} + +void addItemToInventory(Inventory* inventory, InventoryItem item) +{ +} + +void updateInventory(Inventory* inventory) +{ +} |
