From 8aa7bf4897c50351d5f0169fcd6fc6b7a635a1b8 Mon Sep 17 00:00:00 2001 From: Samir Naik Date: Mon, 6 Oct 2003 21:28:52 +0000 Subject: [PATCH] added ActiveCellEntity --- direct/src/level/EntityTypes.py | 9 +++++++++ 1 file changed, 9 insertions(+) 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 = (