mirror of
https://github.com/cellos51/balatro-gba.git
synced 2026-05-09 12:24:58 -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>
15 lines
164 B
C
15 lines
164 B
C
/**
|
|
* @file timer.h
|
|
*
|
|
* @brief Timer constants
|
|
*
|
|
*/
|
|
#ifndef TIMER_H
|
|
#define TIMER_H
|
|
|
|
#define TM_ZERO 0
|
|
|
|
#define MENU_POP_OUT_ANIM_FRAMES 20
|
|
|
|
#endif // TIMER_H
|