added more imports
This commit is contained in:
parent
6715733162
commit
3789bfd66a
1 changed files with 3 additions and 2 deletions
5
game.py
5
game.py
|
@ -1,9 +1,10 @@
|
|||
import pygame, logging
|
||||
|
||||
from time import time
|
||||
from random import randint
|
||||
import bullet, player, textures
|
||||
from bullet import Bullet
|
||||
from player import Shooter
|
||||
from textures import Textures
|
||||
from assets import Textures, Levels
|
||||
from target import Target
|
||||
|
||||
PLAYING_GAME = False
|
||||
|
|
Reference in a new issue