Browse Source

added ActiveCellEntity

Samir Naik 22 years ago
parent
commit
8aa7bf4897
1 changed files with 9 additions and 0 deletions
  1. 9 0
      direct/src/level/EntityTypes.py

+ 9 - 0
direct/src/level/EntityTypes.py

@@ -9,6 +9,15 @@ class Entity:
         ('comment', ''),
         ('comment', ''),
         )
         )
 
 
+
+class ActiveCell(Entity):
+    type = 'activeCell'
+    attribs = (
+        ('row', 0),
+        ('col', 0),
+        ('gridId', None)
+        )
+    
 class LevelMgr(Entity):
 class LevelMgr(Entity):
     type = 'levelMgr'
     type = 'levelMgr'
     attribs = (
     attribs = (