This commit is contained in:
Auric Vente
2024-07-19 00:03:43 -06:00
parent 4f4c2b00e0
commit 8355b3dc9a
3 changed files with 56 additions and 11 deletions

View File

@@ -7,7 +7,7 @@ import appdirs # type: ignore
class Config:
title: str = "Cromulant"
width: int = 1000
width: int = 900
height: int = 800
max_ants: int = 100
here: Path
@@ -22,7 +22,9 @@ class Config:
image_size: int = 80
space_1: int = 25
max_messages: int = 120
loop_delay: int = 2_000
loop_delay_fast: int = 3_000
loop_delay_normal: int = 20_000
loop_delay_slow: int = 60_000
@staticmethod
def prepare() -> None: