aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui.c')
-rw-r--r--src/ui.c24
1 files changed, 24 insertions, 0 deletions
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)
+{
+}