Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/model/ShellModel.py
diff options
context:
space:
mode:
Diffstat (limited to 'shell/model/ShellModel.py')
-rw-r--r--shell/model/ShellModel.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/shell/model/ShellModel.py b/shell/model/ShellModel.py
index 5872b02..9b6d598 100644
--- a/shell/model/ShellModel.py
+++ b/shell/model/ShellModel.py
@@ -1,5 +1,6 @@
from sugar.presence import PresenceService
from model.Friends import Friends
+from model.MeshModel import MeshModel
from model.Owner import ShellOwner
class ShellModel:
@@ -12,6 +13,10 @@ class ShellModel:
self._owner = ShellOwner()
self._owner.announce()
self._friends = Friends()
+ self._mesh = MeshModel()
+
+ def get_mesh(self):
+ return self._mesh
def get_friends(self):
return self._friends