Mercurial > parpg-core
comparison src/parpg/components/container.py @ 43:1cc037593517
Fixed bug in components
author | KarstenBock@gmx.net |
---|---|
date | Thu, 01 Sep 2011 23:26:02 +0200 |
parents | 74f09d6417f4 |
children | 9f631144124f |
comparison
equal
deleted
inserted
replaced
42:9a97f53fc550 | 43:1cc037593517 |
---|---|
17 """ | 17 """ |
18 Component that allows an entity to contain one or more child entities. | 18 Component that allows an entity to contain one or more child entities. |
19 """ | 19 """ |
20 | 20 |
21 def __init__(self): | 21 def __init__(self): |
22 Component.__init__(children=list, max_bulk=int) | 22 Component.__init__(self, children=list, max_bulk=int) |