diff options
Diffstat (limited to 'src/resources')
| -rw-r--r-- | src/resources/TextruesAtlas.h | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/src/resources/TextruesAtlas.h b/src/resources/TextruesAtlas.h index 5fdafc3..97eb889 100644 --- a/src/resources/TextruesAtlas.h +++ b/src/resources/TextruesAtlas.h @@ -15,4 +15,39 @@ static const Rectangle SUBMIT_BUTTON_LOCATION = { .height = 32, }; +static const Rectangle UNKNOWN_BUTTON_LOCATION = { + .x = 32, + .y = 0, + .width = 32, + .height = 32, +}; + +static const Rectangle UNKNOWN_BUTTON_2_LOCATION = { + .x = 64, + .y = 0, + .width = 32, + .height = 32, +}; + +static const Rectangle BACK_BUTTON_SMALL_LOCATION = { + .x = 96, + .y = 0, + .width = 32, + .height = 32, +}; + +static const Rectangle BACK_BUTTON_WIDE_LOCATION = { + .x = 128, + .y = 0, + .width = 64, + .height = 32, +}; + +static const Rectangle PROCEED_BUTTON_WIDE_LOCATION = { + .x = 192, + .y = 0, + .width = 64, + .height = 32, +}; + #endif // TEXTURES_ATLAS_H |
