Added animations class

Editet readme.md
Some changes on mainfile
This commit is contained in:
Christian
2024-08-18 20:00:25 +02:00
parent 31384e03df
commit 0065c3c033
6 changed files with 23 additions and 13 deletions

View File

@@ -1,8 +1,9 @@
############################################################
## Implements all Gamemechanics here! ##
## Implement all Gamemechanics here! ##
############################################################
import GameObject
import animations
from levels import *
import pygame
import logger
@@ -10,9 +11,10 @@ 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