diff options
author | nathansmith117 <thenathansmithsmith@gmail.com> | 2024-03-11 18:10:24 +0000 |
---|---|---|
committer | nathansmith117 <thenathansmithsmith@gmail.com> | 2024-03-11 18:10:24 +0000 |
commit | db67be702a0254df3284832f011217a421428bd1 (patch) | |
tree | f8acfa757d88899c330f8c92c6024c9dfd066014 /src/shop.h | |
parent | bddaf2daaa7f67c2d46a6a611421fc9db6eef83d (diff) | |
download | PenguinYippies-db67be702a0254df3284832f011217a421428bd1.tar.gz PenguinYippies-db67be702a0254df3284832f011217a421428bd1.tar.bz2 PenguinYippies-db67be702a0254df3284832f011217a421428bd1.zip |
More silly shop thingies
Diffstat (limited to 'src/shop.h')
-rw-r--r-- | src/shop.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -7,7 +7,9 @@ #ifndef SHOP_H #define SHOP_H -typedef void (*ShopyEntryCB)(Game* game); +typedef struct ShopEntry ShopEntry; + +typedef void (*ShopyEntryCB)(ShopEntry* entry, Game* game); typedef struct ShopEntry { Texture* texture; |