added ActiveCellEntity
This commit is contained in:
parent
8242b1c4b7
commit
8aa7bf4897
|
|
@ -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 = (
|
||||
|
|
|
|||
Loading…
Reference in New Issue