Files
2026-03-09 22:30:41 +00:00

9 lines
169 B
Python

class Graphic:
def __init__(self, layer, commands):
self.layer = layer
self.commands = commands
def render(self):
return self.commands