From 57a682c295eb665dfa935031446df255471f8edd Mon Sep 17 00:00:00 2001 From: nathansmith117 Date: Mon, 11 Mar 2024 11:27:31 -0600 Subject: Moved things around a tiny ittle bit --- src/shop.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/shop.h (limited to 'src/shop.h') diff --git a/src/shop.h b/src/shop.h new file mode 100644 index 0000000..bae42b3 --- /dev/null +++ b/src/shop.h @@ -0,0 +1,15 @@ +#include "gameCommon.h" + +// The fullname is waaayyy toooo looonnnng for lazy lazy me + +#ifndef SHOP_H +#define SHOP_H + +typedef struct Shop { +} Shop; + +void initShop(Shop* shop, Game* game); +void updateShop(Shop* shop, Game* game); +void closeShop(Shop* shop); + +#endif -- cgit v1.2.3