From 6e0fabd2798d7e602e243a35a922703cde7ef750 Mon Sep 17 00:00:00 2001 From: nathan Date: Wed, 7 Jan 2026 19:48:07 -0700 Subject: I feel like a java programmer --- src/ui.c | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'src/ui.c') diff --git a/src/ui.c b/src/ui.c index 4035b44..66560bb 100644 --- a/src/ui.c +++ b/src/ui.c @@ -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) +{ +} -- cgit v1.2.3