13 lines
268 B
Python
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 |