Advertisement
Guest User

Untitled

a guest
Jan 28th, 2020
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.66 KB | None | 0 0
  1. S = [['.....',
  2.       '.....',
  3.       '..00.',
  4.       '.00..',
  5.       '.....'],
  6.      ['.....',
  7.       '..0..',
  8.       '..00.',
  9.       '...0.',
  10.       '.....']]
  11.  
  12. Z = [['.....',
  13.       '.....',
  14.       '.00..',
  15.       '..00.',
  16.       '.....'],
  17.      ['.....',
  18.       '..0..',
  19.       '.00..',
  20.       '.0...',
  21.       '.....']]
  22.  
  23. I = [['..0..',
  24.       '..0..',
  25.       '..0..',
  26.       '..0..',
  27.       '.....'],
  28.      ['.....',
  29.       '0000.',
  30.       '.....',
  31.       '.....',
  32.       '.....']]
  33.  
  34. O = [['.....',
  35.       '.....',
  36.       '.00..',
  37.       '.00..',
  38.       '.....']]
  39.  
  40. J = [['.....',
  41.       '.0...',
  42.       '.000.',
  43.       '.....',
  44.       '.....'],
  45.      ['.....',
  46.       '..00.',
  47.       '..0..',
  48.       '..0..',
  49.       '.....'],
  50.      ['.....',
  51.       '.....',
  52.       '.000.',
  53.       '...0.',
  54.       '.....'],
  55.      ['.....',
  56.       '..0..',
  57.       '..0..',
  58.       '.00..',
  59.       '.....']]
  60.  
  61. L = [['.....',
  62.       '...0.',
  63.       '.000.',
  64.       '.....',
  65.       '.....'],
  66.      ['.....',
  67.       '..0..',
  68.       '..0..',
  69.       '..00.',
  70.       '.....'],
  71.      ['.....',
  72.       '.....',
  73.       '.000.',
  74.       '.0...',
  75.       '.....'],
  76.      ['.....',
  77.       '.00..',
  78.       '..0..',
  79.       '..0..',
  80.       '.....']]
  81.  
  82. T = [['.....',
  83.       '..0..',
  84.       '.000.',
  85.       '.....',
  86.       '.....'],
  87.      ['.....',
  88.       '..0..',
  89.       '..00.',
  90.       '..0..',
  91.       '.....'],
  92.      ['.....',
  93.       '.....',
  94.       '.000.',
  95.       '..0..',
  96.       '.....'],
  97.      ['.....',
  98.       '..0..',
  99.       '.00..',
  100.       '..0..',
  101.       '.....']]
  102.  
  103. shapes = [S, Z, I, O, J, L, T]
  104. shape_colors = [(0, 255, 0), (255, 0, 0), (0, 255, 255), (255, 255, 0), (255, 165, 0), (0, 0, 255), (128, 0, 128)]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement