pygame_framework/sprite2D.py

14 lines
241 B
Python

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