Added first stubs of MachineActions

CURA-1385
This commit is contained in:
Jaime van Kessel 2016-04-28 17:21:09 +02:00
parent 9009fb9d3d
commit 633d14d925
2 changed files with 61 additions and 0 deletions

8
cura/MachineAction.py Normal file
View file

@ -0,0 +1,8 @@
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