Files
test/game.py
Christian 0065c3c033 Added animations class
Editet readme.md
Some changes on mainfile
2024-08-18 20:00:25 +02:00

21 lines
505 B
Python

############################################################
## Implement all Gamemechanics here! ##
############################################################
import GameObject
import animations
from levels import *
import pygame
import logger
#Leveldefinitions
levels_list.append(first_level("First Level", (500,500), 10, 2))
#Override
def loadlevels():
for level in levels_list:
if(type(level) == "level"):
print("LEVEL")
print(level)
pass