mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-12-16 14:55:22 +01:00
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
6 lines
190 B
TypeScript
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];
|