9 lines
228 B
Python
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
|
|
|