diff options
author | nathansmith117 <thenathansmithsmith@gmail.com> | 2024-03-15 16:44:42 +0000 |
---|---|---|
committer | nathansmith117 <thenathansmithsmith@gmail.com> | 2024-03-15 16:44:42 +0000 |
commit | 9d14163ea278171f96d0be0aa4e911f485befaf9 (patch) | |
tree | 2c008eeabe8e5366b5fd1f284742eefee0266b6f /src/shop.c | |
parent | a82d43089143337524c90b6e2d9df174466abdcb (diff) | |
download | PenguinYippies-9d14163ea278171f96d0be0aa4e911f485befaf9.tar.gz PenguinYippies-9d14163ea278171f96d0be0aa4e911f485befaf9.tar.bz2 PenguinYippies-9d14163ea278171f96d0be0aa4e911f485befaf9.zip |
Going pretty well
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, 10, createPenguinLolCB}; + shop->entries[0] = (ShopEntry){&shop->penguinLol, 50, createPenguinLolCB}; shop->clicker = LoadTextureFromImage(assets->animations[CLICKER_ANIMATION].image); - shop->entries[1] = (ShopEntry){&shop->clicker, 20, createClicker}; + shop->entries[1] = (ShopEntry){&shop->clicker, 70, createClicker}; } void buyThingFromShop(Shop* shop, int id, Game* game) |