Mercurial > parpg-source
comparison components/description.py @ 21:def430d59281
Fixed bug in components
author | KarstenBock@gmx.net |
---|---|
date | Thu, 01 Sep 2011 23:26:02 +0200 |
parents | 9c7a96c6fe41 |
children | ff3e395abf91 |
comparison
equal
deleted
inserted
replaced
20:35081fd801ac | 21:def430d59281 |
---|---|
16 class Description(Component): | 16 class Description(Component): |
17 """Component that stores the description of an object""" | 17 """Component that stores the description of an object""" |
18 | 18 |
19 def __init__(self): | 19 def __init__(self): |
20 """Constructor""" | 20 """Constructor""" |
21 Component.__init__(view_name=str, real_name=str, desc=str) | 21 Component.__init__(self, view_name=str, real_name=str, desc=str) |