From 25c2898b4c2cfff250001ac5e5c69ae4d3a1ce41 Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Wed, 22 Apr 2015 09:51:44 +0100 Subject: [PATCH] Re did folder structure. --- Play The Game.py | 3 +++ README.md | 4 ++-- SPACE INVADERS.py | 5 ----- game.py | 8 ++++++++ 4 files changed, 13 insertions(+), 7 deletions(-) create mode 100644 Play The Game.py delete mode 100644 SPACE INVADERS.py create mode 100644 game.py diff --git a/Play The Game.py b/Play The Game.py new file mode 100644 index 0000000..b7282d5 --- /dev/null +++ b/Play The Game.py @@ -0,0 +1,3 @@ +import GUI +print("Game Loading...") +GUI.display() \ No newline at end of file diff --git a/README.md b/README.md index 2c32f14..ba338a8 100644 --- a/README.md +++ b/README.md @@ -12,8 +12,8 @@ The game is only playable on windows, due to the GUI library only being availabl ### Playing the game ### * Clone the repository -* Install the required libraries -* Run 'SPACE INVADERS.py' +* Install the required libraries (See Above) +* Run 'Play The Game.py' ### Core Contributors ### diff --git a/SPACE INVADERS.py b/SPACE INVADERS.py deleted file mode 100644 index 102a2f4..0000000 --- a/SPACE INVADERS.py +++ /dev/null @@ -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) - diff --git a/game.py b/game.py new file mode 100644 index 0000000..1c7e02b --- /dev/null +++ b/game.py @@ -0,0 +1,8 @@ +import pygame, logging + +import bullet, player, textures + +MENU_WINDOW = "" + +def initialise(menu, options): + pass \ No newline at end of file