### Quick Start Game Initialization Source: https://github.com/haxballgym/ursinaxball/blob/master/README.md Initializes and starts a basic Ursinaxball game with a classic stadium. This is a minimal example to get started with the engine. ```python from ursinaxball import Game from ursinaxball.game import GameConfig from ursinaxball.common_values import BaseMap # Configure the game config = GameConfig( stadium_file=BaseMap.CLASSIC, enable_vsync=True, fov=550 ) # Create and start the game game = Game(config=config) # Add players and start playing! # See example.py for a complete implementation ``` -------------------------------- ### Install Ursinaxball Library Source: https://github.com/haxballgym/ursinaxball/blob/master/README.md Installs the ursinaxball library using Poetry. This command should be run after Poetry is installed. ```bash poetry add ursinaxball ``` -------------------------------- ### Install Poetry Source: https://github.com/haxballgym/ursinaxball/blob/master/README.md Installs Poetry, a dependency management tool for Python projects. Run this command before installing the library. ```bash curl -sSL https://install.python-poetry.org | python3 - ``` -------------------------------- ### Install Development Dependencies Source: https://github.com/haxballgym/ursinaxball/blob/master/README.md Installs development dependencies for Ursinaxball using Poetry. This includes tools needed for testing and development. ```bash poetry install --with dev ``` -------------------------------- ### Clone Ursinaxball Repository Source: https://github.com/haxballgym/ursinaxball/blob/master/README.md Clones the Ursinaxball repository from GitHub. This is the first step for local development. ```bash git clone https://github.com/HaxballGym/ursinaxball.git cd ursinaxball ``` -------------------------------- ### Run Pytest Tests Source: https://github.com/haxballgym/ursinaxball/blob/master/README.md Executes the test suite for Ursinaxball using Poetry. This command is used to ensure the project's stability. ```bash poetry run pytest ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.