💾 Archived View for gemini.rmf-dev.com › repo › Vaati › RTetris › files › c5d4343c8af75ea8ba5f0fb5ce… captured on 2022-07-16 at 17:08:42. Gemini links have been rewritten to link to archived content

View Raw

More Information

-=-=-=-=-=-=-

0 /* See LICENSE file for copyright and license details. */

1

2 // Number of blocks horizontally

3 #define SIZEX 10

4

5 // Number of blocks vertically

6 #define SIZEY 20

7

8 // Digit bar horizontal length

9 #define WIDTHX 8

10

11 // Digit bar vertical length

12 #define WIDTHY 15

13

14 // Digit bar thickness

15 #define THICK 2

16

17 // Background color

18 SDL_Color background = {96,96,96,0};

19

20 // Text color

21 SDL_Color text = {255,255,255,0};

22

23 // Blocks color

24 SDL_Color color[] = {

25 {5,96,96,0},

26 {10,15,95,0},

27 {93,63,8,0},

28 {93,93,4,0},

29 {5,92,10,0},

30 {61,10,95,0},

31 {93,5,1,0}

32 };

33