sep-pm-platformer/project/level/elements/BlockElement.py

8 lines
274 B
Python
Raw Normal View History

2023-03-26 11:21:22 +02:00
from level.elements.LevelElement import LevelElement
from sprite.StaticSprite import StaticSprite
2023-03-26 11:21:22 +02:00
class BlockElement(LevelElement):
def __init__(self, x_position : int, y_position : int, sprite : StaticSprite):
super().__init__(x_position, y_position, sprite)