Some changes in classes

This commit is contained in:
Christian
2024-08-18 11:57:38 +02:00
parent 0bbe702f8a
commit fb55785db1
8 changed files with 89 additions and 23 deletions

View File

@@ -1,5 +1,8 @@
import pygame
#Statics
spawned_enemys = list()
class GameObject(object):
objects = list()
def __init__(self, name, pos_x, pos_y, width, height, image=None) -> None: