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