game: advent to online
This commit is contained in:
8
games/objects/Ball.py
Normal file
8
games/objects/Ball.py
Normal file
@ -0,0 +1,8 @@
|
||||
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
|
||||
|
Reference in New Issue
Block a user