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