Added missing param hint in docstring

This commit is contained in:
Marcin Kostrzewski 2020-05-16 09:51:04 +02:00
parent 215dd876f7
commit 90746c51d9

View File

@ -10,6 +10,7 @@ class Pickupable(Interactable):
:param size: Size in px
:param pos: Position tuple of (x,y)
:param Statistics: Outcome of the interaction
:param classifier: Type of the entity (food, water, rest)
"""
super().__init__(texture, size, pos, Statistics, classifier)
self.is_pickupable = True