diff --git a/direct/src/level/EntityTypes.py b/direct/src/level/EntityTypes.py index 9265465cd9..163df8dc1f 100755 --- a/direct/src/level/EntityTypes.py +++ b/direct/src/level/EntityTypes.py @@ -9,6 +9,15 @@ class Entity: ('comment', ''), ) + +class ActiveCell(Entity): + type = 'activeCell' + attribs = ( + ('row', 0), + ('col', 0), + ('gridId', None) + ) + class LevelMgr(Entity): type = 'levelMgr' attribs = (