Started work on Ember

This commit is contained in:
2018-07-28 23:56:23 +03:00
commit ac582a8b0b
32 changed files with 239149 additions and 0 deletions

0
model/__init__.py Normal file
View File

2
model/composition.py Normal file
View File

@ -0,0 +1,2 @@
class CompositionClip(object):

7
model/project.py Normal file
View File

@ -0,0 +1,7 @@
class Project(object):
def __init__(self):
self.root_dir = None
def get_items(self):
pass

6
model/project_item.py Normal file
View File

@ -0,0 +1,6 @@
class ProjectItem(object):
def __init__(self, filename):
self.filename = filename