Files
project_game/obstacle_spawner.py
2026-01-14 09:47:19 -05:00

13 lines
273 B
Python

from random import randint
from scene import Scene
class SceneSpawner:
#display = false ?
def __init__(self, board_size):
width, height = board_size
self.board_width = width
def play_turn(self, game):
game.state['score'] += 1