mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-06-04 03:04:23 +08:00
Added CuraEngineBackend plugin
This commit is contained in:
commit
71bbe1ef7e
5
CuraEngineBackend.py
Normal file
5
CuraEngineBackend.py
Normal file
@ -0,0 +1,5 @@
|
||||
from Cura.Backend.Backend import Backend
|
||||
|
||||
class CuraEngineBackend(Backend):
|
||||
def __init__(self):
|
||||
super(CuraEngineBackend,self).__init__()
|
8
__init__.py
Normal file
8
__init__.py
Normal file
@ -0,0 +1,8 @@
|
||||
#Shoopdawoop
|
||||
from plugins.CuraEngineBackend import CuraEngineBackend
|
||||
|
||||
def getMetaData():
|
||||
return { "name": "CuraBackend", "type": "Backend" }
|
||||
|
||||
def register(app):
|
||||
app.setBackend(CuraEngineBackend())
|
Loading…
x
Reference in New Issue
Block a user