24 lines
324 B
Python
24 lines
324 B
Python
WINDOW_X = 533 + 1200
|
|
WINDOW_Y = 950
|
|
FRAME_WIDTH = 533
|
|
FRAME_HEIGHT = 533
|
|
|
|
# Size of small image
|
|
IMAGE_SIZE = 50
|
|
|
|
AMOUNT_OF_MINES = 10
|
|
|
|
DELAY_TIME = 0.5
|
|
|
|
|
|
standard_cell_cost = 10
|
|
|
|
amount_of_sand_cells = 10
|
|
sand_cell_cost = 20
|
|
|
|
amount_of_water_cells = 10
|
|
water_cell_cost = 30
|
|
|
|
amount_of_swamp_cells = 10
|
|
swamp_cell_cost = 40
|