Moved sprite group initialization higher in order
This commit is contained in:
parent
fcac23a878
commit
e78099deb1
@ -5,6 +5,8 @@ from pathlib import Path
|
|||||||
from game.EventManager import EventManager
|
from game.EventManager import EventManager
|
||||||
from game.Screen import Screen
|
from game.Screen import Screen
|
||||||
|
|
||||||
|
from src.game.Timer import Timer
|
||||||
|
|
||||||
|
|
||||||
class Game:
|
class Game:
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
@ -24,6 +26,7 @@ class Game:
|
|||||||
|
|
||||||
print("Initializing pygame...", end=" ")
|
print("Initializing pygame...", end=" ")
|
||||||
pygame.init()
|
pygame.init()
|
||||||
|
self.spritesList = pygame.sprite.Group()
|
||||||
print("OK")
|
print("OK")
|
||||||
|
|
||||||
print("Initializing screen, params: " + str(self.config["window"]) + "...", end=" ")
|
print("Initializing screen, params: " + str(self.config["window"]) + "...", end=" ")
|
||||||
@ -38,8 +41,6 @@ class Game:
|
|||||||
|
|
||||||
self.eventManager = EventManager(self)
|
self.eventManager = EventManager(self)
|
||||||
|
|
||||||
self.spritesList = pygame.sprite.Group()
|
|
||||||
|
|
||||||
self.mainLoop()
|
self.mainLoop()
|
||||||
|
|
||||||
def mainLoop(self):
|
def mainLoop(self):
|
||||||
|
Loading…
Reference in New Issue
Block a user