Cura/cura/MachineAction.py
Jaime van Kessel 633d14d925 Added first stubs of MachineActions
CURA-1385
2016-04-28 17:21:09 +02:00

8 lines
213 B
Python

from PyQt5.QtCore import QObject
from UM.PluginObject import PluginObject
class MachineAction(QObject, PluginObject):
def __init__(self, key, label = ""):
self._key = key
self._label = label