├── README.md ├── best.pickle ├── config.txt ├── main.py ├── pong ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── ball.cpython-38.pyc │ ├── game.cpython-38.pyc │ └── paddle.cpython-38.pyc ├── ball.py ├── game.py └── paddle.py ├── requirements.txt └── tutorial.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/NEAT-Pong-Python/HEAD/README.md -------------------------------------------------------------------------------- /best.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/NEAT-Pong-Python/HEAD/best.pickle -------------------------------------------------------------------------------- /config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/NEAT-Pong-Python/HEAD/config.txt -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/NEAT-Pong-Python/HEAD/main.py -------------------------------------------------------------------------------- /pong/__init__.py: -------------------------------------------------------------------------------- 1 | from .game import Game 2 | -------------------------------------------------------------------------------- /pong/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/NEAT-Pong-Python/HEAD/pong/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /pong/__pycache__/ball.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/NEAT-Pong-Python/HEAD/pong/__pycache__/ball.cpython-38.pyc -------------------------------------------------------------------------------- /pong/__pycache__/game.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/NEAT-Pong-Python/HEAD/pong/__pycache__/game.cpython-38.pyc -------------------------------------------------------------------------------- /pong/__pycache__/paddle.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/NEAT-Pong-Python/HEAD/pong/__pycache__/paddle.cpython-38.pyc -------------------------------------------------------------------------------- /pong/ball.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/NEAT-Pong-Python/HEAD/pong/ball.py -------------------------------------------------------------------------------- /pong/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/NEAT-Pong-Python/HEAD/pong/game.py -------------------------------------------------------------------------------- /pong/paddle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/NEAT-Pong-Python/HEAD/pong/paddle.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | neat-python 2 | pygame 3 | -------------------------------------------------------------------------------- /tutorial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/NEAT-Pong-Python/HEAD/tutorial.py --------------------------------------------------------------------------------