Mercurial > parpg-source
comparison components/container.py @ 21:def430d59281
Fixed bug in components
author | KarstenBock@gmx.net |
---|---|
date | Thu, 01 Sep 2011 23:26:02 +0200 |
parents | 16c959864d41 |
children | d8c17766895b |
comparison
equal
deleted
inserted
replaced
20:35081fd801ac | 21:def430d59281 |
---|---|
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) |