added ActiveCellEntity

This commit is contained in:
Samir Naik 2003-10-06 21:28:52 +00:00
parent 8242b1c4b7
commit 8aa7bf4897
1 changed files with 9 additions and 0 deletions

View File

@ -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 = (