summaryrefslogtreecommitdiff
path: root/qvisqve/entity_manager.py
diff options
context:
space:
mode:
Diffstat (limited to 'qvisqve/entity_manager.py')
-rw-r--r--qvisqve/entity_manager.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/qvisqve/entity_manager.py b/qvisqve/entity_manager.py
index b39d7e6..a4a1705 100644
--- a/qvisqve/entity_manager.py
+++ b/qvisqve/entity_manager.py
@@ -26,6 +26,9 @@ class EntityManager:
def get(self, entity_id):
return self._store.get(self._type, entity_id)
+ def delete(self, entity_id):
+ return self._store.delete(self._type, entity_id)
+
def create(self, entity_id, entity):
self._store.create(self._type, entity_id, entity)