This commit is contained in:
Hope
2025-08-19 08:29:03 -04:00
parent 3b8676a37a
commit fdf145e2c1
11 changed files with 208 additions and 1 deletions

12
display.py Normal file
View 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