diff options
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 |