22 Jun
2022
22 Jun
'22
2:19 p.m.
here's the code that uses it: class App(Engine): def __init__(self): self.last_key = 'press key?' def update(self, key = ''): if key: self.last_key = key self.plot(self.width / 2, self.height / 2, self.last_key) if __name__ == '__main__': App().run()