mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +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
|