aboutsummaryrefslogtreecommitdiff
path: root/src/screens/infoScreen.h
diff options
context:
space:
mode:
authornathansmithsmith <thenathansmithsmith@gmail.com>2023-12-22 16:59:47 -0700
committernathansmithsmith <thenathansmithsmith@gmail.com>2023-12-22 16:59:47 -0700
commit5b7e4668d549237e02dfe0580918c48b6d3b5c2d (patch)
treebc31e830e86c27d77bdb2955942f03d176bedca4 /src/screens/infoScreen.h
parent797381def454d1556f82a81e6452c7b8ee6d1bad (diff)
Reset button
Diffstat (limited to 'src/screens/infoScreen.h')
-rw-r--r--src/screens/infoScreen.h7
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;