Started work on Ember
This commit is contained in:
0
model/__init__.py
Normal file
0
model/__init__.py
Normal file
2
model/composition.py
Normal file
2
model/composition.py
Normal file
@ -0,0 +1,2 @@
|
||||
class CompositionClip(object):
|
||||
|
7
model/project.py
Normal file
7
model/project.py
Normal 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
6
model/project_item.py
Normal file
@ -0,0 +1,6 @@
|
||||
class ProjectItem(object):
|
||||
|
||||
def __init__(self, filename):
|
||||
self.filename = filename
|
||||
|
||||
|
Reference in New Issue
Block a user