aboutsummaryrefslogtreecommitdiff
path: root/core.py
diff options
context:
space:
mode:
Diffstat (limited to 'core.py')
-rw-r--r--core.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/core.py b/core.py
index 06367cf..776af55 100644
--- a/core.py
+++ b/core.py
@@ -85,6 +85,12 @@ class Core():
with open(filepath, 'w') as f:
f.write(Core.stringOrderedDict(saveValueStore))
+ def importPreset(self, filepath):
+ print(filepath)
+
+ def exportPreset(self, exportName, compName, vers, origName):
+ pass
+
def loadEncoderOptions(self):
file_path = os.path.join(self.wd, 'encoder-options.json')
with open(file_path) as json_file: