mirror of
https://github.com/cellos51/balatro-gba.git
synced 2026-05-12 06:45:06 -05:00
Some checks are pending
Build and Deploy Doxygen Docs / docs (push) Waiting to run
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>
22 lines
699 B
C
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
|