8 lines
218 B
Python
8 lines
218 B
Python
|
from sprite.Spritesheet import Spritesheet
|
||
|
from sprite.StaticSprite import StaticSprite
|
||
|
|
||
|
|
||
|
class StaticLevelElement(StaticSprite):
|
||
|
def __init__(self, spritesheet: Spritesheet):
|
||
|
super().__init__(spritesheet)
|