diff options
author | nathansmith117 <thenathansmithsmith@gmail.com> | 2024-03-13 18:07:43 +0000 |
---|---|---|
committer | nathansmith117 <thenathansmithsmith@gmail.com> | 2024-03-13 18:07:43 +0000 |
commit | 8372a776ad2e06b99e4704403504ba74932276ec (patch) | |
tree | 1c688217d8420474ad4c8b68c721d1a27d9df43d /src/shop.h | |
parent | 694efe00e1e01af8534672b60970a3e0555e5f34 (diff) | |
download | PenguinYippies-8372a776ad2e06b99e4704403504ba74932276ec.tar.gz PenguinYippies-8372a776ad2e06b99e4704403504ba74932276ec.tar.bz2 PenguinYippies-8372a776ad2e06b99e4704403504ba74932276ec.zip |
Made a clicker
Diffstat (limited to 'src/shop.h')
-rw-r--r-- | src/shop.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,8 +1,9 @@ #include "gameCommon.h" +#include <raylib.h> // The fullname is waaayyy toooo looonnnng for lazy lazy me -#define SHOP_ENTRY_COUNT 1 +#define SHOP_ENTRY_COUNT 2 #ifndef SHOP_H #define SHOP_H @@ -22,6 +23,7 @@ typedef struct Shop { // Some silly textures. Texture penguinLol; + Texture clicker; } Shop; void initShop(Shop* shop, Game* game); |