diff --git a/constants.py b/constants.py index ab7b2be..193212b 100644 --- a/constants.py +++ b/constants.py @@ -4,15 +4,14 @@ DISPLAY_SIZE_HORIZONTAL = 600 DISPLAY_SIZE_VERTICAL = 600 -#TILE DIVIDER -TILE_DIVIDER = 20 +#TILE DIVIDER = TILE SIZE +TILE_SIZE = 2 # number of tiles -HORIZONTAL_TILES_NUMBER = DISPLAY_SIZE_HORIZONTAL/TILE_DIVIDER -VERTICAL_TILES_NUMBER = DISPLAY_SIZE_VERTICAL/TILE_DIVIDER +HORIZONTAL_TILES_NUMBER = DISPLAY_SIZE_HORIZONTAL/TILE_SIZE +VERTICAL_TILES_NUMBER = DISPLAY_SIZE_VERTICAL/TILE_SIZE #TILE_SIZE -TILE_SIZE = DISPLAY_SIZE_HORIZONTAL/HORIZONTAL_TILES_NUMBER #colors WHITE = (255, 255, 255) #SUPER UPRAWA @@ -35,3 +34,28 @@ FPS = 144 + + + + + + + + + + + + + + + + + + + + + + + + +