generated from mwc/project_game
wip
This commit is contained in:
12
display.py
Normal file
12
display.py
Normal file
@@ -0,0 +1,12 @@
|
||||
class BG:
|
||||
|
||||
def __init__(self, position, name):
|
||||
self.position = position
|
||||
self.name = name
|
||||
self.draw_bg()
|
||||
|
||||
def draw_bg(self):
|
||||
bg1 = "-"
|
||||
bg2= "|"
|
||||
bg = bg1 + bg2 + bg2 + bg1
|
||||
return bg
|
||||
Reference in New Issue
Block a user