42_ft_transcendence/games/objects/Ball.py
2024-01-16 17:47:48 +01:00

9 lines
228 B
Python

from .. import config
class Ball:
def __init__(self) -> None:
self.x: float = config.BALL_SPAWN_POS_X
self.y: float = config.BALL_SPAWN_POS_Y
self.speed: float = config.BALL_SPEED_START