mirror of
https://github.com/kristoferssolo/Tetris.git
synced 2025-10-21 20:00:35 +00:00
14 lines
295 B
Python
14 lines
295 B
Python
import neat
|
|
from utils import BASE_PATH
|
|
|
|
|
|
def get_config() -> neat.Config:
|
|
config_path = BASE_PATH / "config.txt"
|
|
return neat.Config(
|
|
neat.DefaultGenome,
|
|
neat.DefaultReproduction,
|
|
neat.DefaultSpeciesSet,
|
|
neat.DefaultStagnation,
|
|
config_path,
|
|
)
|