generated from mwc/project_game
13 lines
273 B
Python
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
|
|
|