mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-05-07 03:59:35 +00:00
04d8515a73
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
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
|