pokerogue/src/@types/sprite-types.ts
Bertie690 4349ee82b9
[Refactor] Add TIME_OF_DAY_OVERRIDE & refactor arena tint code
https://github.com/pagefaultgames/pokerogue/pull/6554

* Removed `ARENA_TINT_OVERRIDE` + minor cleanup of arena tint code

* Added `TIME_OF_DAY_OVERRIDE` to replace tint override

* Fixed visual bug with time of day override

* Fixed the frag stuff and blah blah blah

* Update sprite-types.ts
2025-09-27 14:41:56 -07:00

6 lines
190 B
TypeScript

/**
* Tuple type representing a set of RGB color values.
* Values should be in integer form (inside the interval `[0, 255]`).
*/
export type RGBArray = [r: number, g: number, b: number];