diff options
author | nathansmithsmith <thenathansmithsmith@gmail.com> | 2023-12-22 16:59:47 -0700 |
---|---|---|
committer | nathansmithsmith <thenathansmithsmith@gmail.com> | 2023-12-22 16:59:47 -0700 |
commit | 5b7e4668d549237e02dfe0580918c48b6d3b5c2d (patch) | |
tree | bc31e830e86c27d77bdb2955942f03d176bedca4 /src/screens/infoScreen.h | |
parent | 797381def454d1556f82a81e6452c7b8ee6d1bad (diff) |
Reset button
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; |