mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-11-02 20:52:20 -07:00
Added first stubs of MachineActions
CURA-1385
This commit is contained in:
parent
9009fb9d3d
commit
633d14d925
2 changed files with 61 additions and 0 deletions
8
cura/MachineAction.py
Normal file
8
cura/MachineAction.py
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue