diff options
author | nathansmith117 <thenathansmithsmith@gmail.com> | 2024-05-10 16:49:25 +0000 |
---|---|---|
committer | nathansmith117 <thenathansmithsmith@gmail.com> | 2024-05-10 16:49:25 +0000 |
commit | 1b2a507416bc1fd8fd2bb07f94d8bcd096c19721 (patch) | |
tree | 11f53e8af7d00bbfe59feecc8e65a7401bcbd45b /src/shop.c | |
parent | fca307d6af08116f675e0d04e5ace2e353ec718c (diff) | |
download | PenguinYippies-1b2a507416bc1fd8fd2bb07f94d8bcd096c19721.tar.gz PenguinYippies-1b2a507416bc1fd8fd2bb07f94d8bcd096c19721.tar.bz2 PenguinYippies-1b2a507416bc1fd8fd2bb07f94d8bcd096c19721.zip |
%50 increase thingy added
Diffstat (limited to 'src/shop.c')
-rw-r--r-- | src/shop.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -38,10 +38,10 @@ void initShop(Shop* shop, Game* game) // Entries. shop->penguinLol = LoadTextureFromImage(assets->animations[PENGUIN_LOL_ANIMATION].image); - shop->entries[0] = (ShopEntry){&shop->penguinLol, 50, createPenguinLolCB}; + shop->entries[0] = (ShopEntry){&shop->penguinLol, 100, createPenguinLolCB}; shop->clicker = LoadTextureFromImage(assets->animations[CLICKER_ANIMATION].image); - shop->entries[1] = (ShopEntry){&shop->clicker, 70, createClicker}; + shop->entries[1] = (ShopEntry){&shop->clicker, 200, createClicker}; } void buyThingFromShop(Shop* shop, int id, Game* game) |