balatro-gba/include/layout.h
Rickey d01b1ba12d
Some checks are pending
Build and Deploy Doxygen Docs / docs (push) Waiting to run
Refactor/blind select screen (#461)
Refactor Blind Select Screen.

Based on #363
---------

Co-authored-by: emiyl <me@emiyl.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
2026-05-06 00:56:59 -07:00

22 lines
699 B
C

/**
* @file layout.h
*
* @brief Header of shared rects and points needed for ui
*/
#ifndef LAYOUT_H
#define LAYOUT_H
#include "graphic_utils.h"
// clang-format off
// Points x y
static const BG_POINT CUR_BLIND_TOKEN_POS = {8, 18};
static const BG_POINT TOP_LEFT_PANEL_POINT = {0, 0, };
// Rects left top right bottom
static const Rect TOP_LEFT_PANEL_ANIM_RECT = {0, 0, 8, 4};
static const Rect POP_MENU_ANIM_RECT = {9, 7, 24, 31};
static const Rect TOP_LEFT_ITEM_SRC_RECT = {0, 20, 8, 25};
// clang-format on
#endif // LAYOUT_H