diff options
Diffstat (limited to 'src/screens/infoScreen.h')
-rw-r--r-- | src/screens/infoScreen.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/screens/infoScreen.h b/src/screens/infoScreen.h index 0c2f93d..a84180c 100644 --- a/src/screens/infoScreen.h +++ b/src/screens/infoScreen.h @@ -21,7 +21,10 @@ typedef struct EntityUserInfo { extern const EntityUserInfo infoScreenEntityInfo[INFO_SCREEN_ENTITY_COUNT]; typedef struct InfoScreen { - Rectangle goBackButton; + Rectangle goBackButton; // Go to main menu. + Rectangle backButton; + Rectangle nextButton; + Rectangle resetButton; Camera3D camera; float distances[ENTITY_USER_INFO_MSG_MAX]; @@ -29,7 +32,7 @@ typedef struct InfoScreen { int currentEntity; Vector2 lastMouse; - Quaternion rotation; + Quaternion rotations[ENTITY_USER_INFO_MSG_MAX]; bool resetMouse; } InfoScreen; |