| 901 | } |
| 902 | |
| 903 | bool bricksRemain() |
| 904 | { |
| 905 | for (int i = 0; i < BRICK_8; i++) |
| 906 | { |
| 907 | for (int j = 0; j < BRICK_32; j++) |
| 908 | { |
| 909 | if (bricks[i][j]) |
| 910 | { |
| 911 | return true; |
| 912 | } |
| 913 | } |
| 914 | } |
| 915 | return false; |
| 916 | } |
| 917 | |
| 918 | void BrickBreakerEffect(FastLED_NeoMatrix *matrix, int16_t x, int16_t y, EffectSettings *settings) |
| 919 | { |
no outgoing calls
no test coverage detected