diff options
author | nathansmith117 <thenathansmithsmith@gmail.com> | 2024-03-11 17:27:31 +0000 |
---|---|---|
committer | nathansmith117 <thenathansmithsmith@gmail.com> | 2024-03-11 17:27:31 +0000 |
commit | 57a682c295eb665dfa935031446df255471f8edd (patch) | |
tree | 43f32d4064e1ed0d1b94129f36fb4f15f52f7716 /src/shop.h | |
parent | 372297622a2da74a31c54e44283c4d2333ebf53f (diff) | |
download | PenguinYippies-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.h | 15 |
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 |