######## Fireworks ############
| 571 | |
| 572 | // ######## Fireworks ############ |
| 573 | struct Firework |
| 574 | { |
| 575 | float x, y; |
| 576 | uint8_t life; |
| 577 | bool exploded; |
| 578 | CRGB color; |
| 579 | uint16_t peak; |
| 580 | float speed; // Add a speed variable to each firework |
| 581 | }; |
| 582 | |
| 583 | #define MAX_FIREWORKS 5 |
| 584 | Firework fireworks[MAX_FIREWORKS]; |
nothing calls this directly
no outgoing calls
no test coverage detected