Are you sure?
Do you want to delete “Rosetter” permanently? You will not be able to undo this action.
import icons
class Roset:
def __init__(self, x=50, y=50, color='red', text='1'):
self.award = icons.Award(color=color, width=15, height=20, x=x, y=y)
self.text = Text(text=text, color=color, font_size=5, y=y-3, x=x)
Roset(x=18, color='green', text='3')
Roset(x=82, color='green', text='3')
Roset(x=50)
Roset(x=66, color='blue', text='2')
Roset(x=34, color='blue', text='2')