aboutsummaryrefslogtreecommitdiffstats
path: root/src/shop.h
diff options
context:
space:
mode:
authornathansmith117 <thenathansmithsmith@gmail.com>2024-03-11 17:27:31 +0000
committernathansmith117 <thenathansmithsmith@gmail.com>2024-03-11 17:27:31 +0000
commit57a682c295eb665dfa935031446df255471f8edd (patch)
tree43f32d4064e1ed0d1b94129f36fb4f15f52f7716 /src/shop.h
parent372297622a2da74a31c54e44283c4d2333ebf53f (diff)
downloadPenguinYippies-57a682c295eb665dfa935031446df255471f8edd.tar.gz
PenguinYippies-57a682c295eb665dfa935031446df255471f8edd.tar.bz2
PenguinYippies-57a682c295eb665dfa935031446df255471f8edd.zip
Moved things around a tiny ittle bit
Diffstat (limited to 'src/shop.h')
-rw-r--r--src/shop.h15
1 files changed, 15 insertions, 0 deletions
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