Files
test/Enemy.py
2024-08-08 15:10:10 +02:00

13 lines
268 B
Python

import pygame
import GameObject
import Utils
class Enemy(GameObject.GameObject):
def __init__(self, name, pos_x, pos_y, width, height, image=None) -> None:
super().__init__(name, pos_x, pos_y, width, height, image)
#def render(self):
# pass