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

8 lines
238 B
Python
Raw Normal View History

2023-03-26 15:14:06 +02:00
from level.elements.StaticLevelElement import StaticLevelElement
from sprite.Spritesheet import Spritesheet
2023-03-26 11:21:22 +02:00
2023-03-26 15:14:06 +02:00
class BlockElement(StaticLevelElement):
def __init__(self, spritesheet: Spritesheet):
super().__init__(spritesheet)