2023-03-26 14:12:46 +02:00
|
|
|
from sprite.StaticSprite import StaticSprite
|
|
|
|
|
2023-03-26 11:21:22 +02:00
|
|
|
class LevelElement:
|
2023-03-26 14:12:46 +02:00
|
|
|
def __init__(self,x_position : int, y_position : int, sprite : StaticSprite):
|
|
|
|
self.x_position = x_position
|
|
|
|
self.y_position = y_position
|
|
|
|
self.sprite = sprite
|
|
|
|
|
|
|
|
|