18 lines
262 B
Python
18 lines
262 B
Python
|
from turtle import Turtle
|
||
|
|
||
|
class Scoreboard(Turtle):
|
||
|
|
||
|
def __init__(self, x, y):
|
||
|
pass
|
||
|
|
||
|
def draw_scoreboard(self):
|
||
|
pass
|
||
|
|
||
|
def reset(self):
|
||
|
pass
|
||
|
|
||
|
def game_over(self):
|
||
|
pass
|
||
|
|
||
|
def increment(self, amount):
|
||
|
pass
|