diff options
author | nathansmithsmith <thenathansmithsmith@gmail.com> | 2023-12-22 12:37:18 -0700 |
---|---|---|
committer | nathansmithsmith <thenathansmithsmith@gmail.com> | 2023-12-22 12:37:18 -0700 |
commit | 0be4fca7d5d05fe3cb161ed92218277f4af739e0 (patch) | |
tree | 1f2ddf753176698082433827bb47365671a476e6 /src/screens/infoScreen.h | |
parent | ad66d7ade0528829a48ac4426d952ec882ef4329 (diff) |
Some info screen stuff
Diffstat (limited to 'src/screens/infoScreen.h')
-rw-r--r-- | src/screens/infoScreen.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/screens/infoScreen.h b/src/screens/infoScreen.h index 83a8059..a677a3d 100644 --- a/src/screens/infoScreen.h +++ b/src/screens/infoScreen.h @@ -1,9 +1,17 @@ #include "gameCommon.h" +#include "entity.h" +#include "assets.h" #ifndef INFO_SCREEN_H #define INFO_SCREEN_H +typedef struct EntityUserInfo { + EntityType type; + AssetId assetId; +} EntityUserInfo; + typedef struct InfoScreen { + Rectangle goBackButton; } InfoScreen; void initInfoScreen(Game * game); |