diff --git a/entities/RandomBox.py b/entities/RandomBox.py index 86dfa85f..e6ca422c 100644 --- a/entities/RandomBox.py +++ b/entities/RandomBox.py @@ -2,7 +2,7 @@ from entities.EntityBase import EntityBase - +#Adding the comment class RandomBox(EntityBase): def __init__(self, screen, spriteCollection, x, y, item, sound, dashboard, level, gravity=0): super(RandomBox, self).__init__(x, y, gravity) @@ -18,7 +18,7 @@ def __init__(self, screen, spriteCollection, x, y, item, sound, dashboard, level self.vel = 1 self.item = item self.level = level - +#Adding the comment 2 def update(self, cam): if self.alive and not self.triggered: self.animation.update()