mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-04-29 07:14:24 +08:00
14 lines
316 B
Python
14 lines
316 B
Python
from UM.Scene.SceneNodeDecorator import SceneNodeDecorator
|
|
|
|
|
|
class GCodeListDecorator(SceneNodeDecorator):
|
|
def __init__(self):
|
|
super().__init__()
|
|
self._gcode_list = []
|
|
|
|
def getGCodeList(self):
|
|
return self._gcode_list
|
|
|
|
def setGCodeList(self, list):
|
|
self._gcode_list = list
|