Re did folder structure.
This commit is contained in:
parent
3d85a34dd8
commit
25c2898b4c
4 changed files with 13 additions and 7 deletions
3
Play The Game.py
Normal file
3
Play The Game.py
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
import GUI
|
||||||
|
print("Game Loading...")
|
||||||
|
GUI.display()
|
|
@ -12,8 +12,8 @@ The game is only playable on windows, due to the GUI library only being availabl
|
||||||
### Playing the game ###
|
### Playing the game ###
|
||||||
|
|
||||||
* Clone the repository
|
* Clone the repository
|
||||||
* Install the required libraries
|
* Install the required libraries (See Above)
|
||||||
* Run 'SPACE INVADERS.py'
|
* Run 'Play The Game.py'
|
||||||
|
|
||||||
### Core Contributors ###
|
### Core Contributors ###
|
||||||
|
|
||||||
|
|
|
@ -1,5 +0,0 @@
|
||||||
import pygame, logging
|
|
||||||
import bullet, player, textures, GUI # Import other files
|
|
||||||
|
|
||||||
logging.basicConfig(format="%(levelname)s:%(message)s", level=logging.DEBUG)
|
|
||||||
|
|
8
game.py
Normal file
8
game.py
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
import pygame, logging
|
||||||
|
|
||||||
|
import bullet, player, textures
|
||||||
|
|
||||||
|
MENU_WINDOW = ""
|
||||||
|
|
||||||
|
def initialise(menu, options):
|
||||||
|
pass
|
Reference in a new issue