mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-03-03 00:19:06 +00:00
14 lines
276 B
TypeScript
14 lines
276 B
TypeScript
|
/**
|
||
|
* Determines the cursor target when entering the shop phase.
|
||
|
*/
|
||
|
export enum ShopCursorTarget {
|
||
|
/** Cursor points to Reroll */
|
||
|
REROLL,
|
||
|
/** Cursor points to Items */
|
||
|
ITEMS,
|
||
|
/** Cursor points to Shop */
|
||
|
SHOP,
|
||
|
/** Cursor points to Check Team */
|
||
|
CHECK_TEAM
|
||
|
}
|