mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-05-01 09:14:56 +00:00
9 lines
169 B
Python
9 lines
169 B
Python
class Graphic:
|
|
|
|
def __init__(self, layer, commands):
|
|
self.layer = layer
|
|
self.commands = commands
|
|
|
|
def render(self):
|
|
return self.commands
|