from game_object import GameObject class Sprite2D(GameObject): def __init__(self, x, y, w, h, active=True): super().__init__(active, x, y, w, h) def update(self, deltatime): pass def draw(self): pass