Verteiltesystheme/Code/Config.py

22 lines
531 B
Python

class GeneralConfig:
width = 1000
height = 1000
fps = 150
window_caption = "GOL"
evolve_speed= 360# ziemlich slow das updated abhänig davon wie viele mill sec das game seit dem eltzten mal gelaufen ist im schnit sind das so 60
class Colors:
ORANGE = (255, 140, 0)
RED = (255, 0, 0)
GREEN = (5, 112, 0)
BLACK = (0, 0, 0)
WHITE = (255, 255, 255)
GREY = (84, 84, 84)
class SquareConfig:
width = 10
height = 10
unclicked_color = Colors.BLACK
clicked_color = Colors.WHITE