From a6c9e8100b85b74ec160c03f94990b0ceefe91c9 Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Thu, 14 May 2015 13:20:33 +0100 Subject: [PATCH] rebranding the game --- GUI.py | 8 ++++---- Play The Game.py | 2 +- README.md | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/GUI.py b/GUI.py index 377c36c..3177c4d 100644 --- a/GUI.py +++ b/GUI.py @@ -12,10 +12,10 @@ PADDING_BUTTON = 9 class Main_Window: def __init__(self, master): self.master = master - self.master.title("SPACE INVADERS") + self.master.title("ATTACK ON BLOCKS") self.title = Label(self.master) - self.title.config(text="SPACE INVADERS!",font=("Courier New", 37)) + self.title.config(text="ATTACK ON BLOCKS!",font=("Courier New", 37)) self.title.pack(side="top", padx=PADDING_BUTTON, pady=PADDING_TITLE/2) self.start_button = Button(self.master, style="Menu.TButton") @@ -56,7 +56,7 @@ class Main_Window: def show_info(self, event): logging.info("Loading About Page...") - system("start https://bitbucket.org/theorangeone/space-invaders/wiki/Home") + system("start https://bitbucket.org/theorangeone/attack-on-blocks/wiki/Home") def close(self, event): logging.critical("Closing Main Window.") @@ -74,7 +74,7 @@ class Options_Window: def display(self, master): self.master = master - self.master.title("SPACE INVADERS - Options") + self.master.title("ATTACK ON BLOCKS - Options") self.title = Label(self.master) self.title.config(text="OPTIONS",font=("Courier New", 37)) diff --git a/Play The Game.py b/Play The Game.py index ff4c8bb..12ae2a9 100644 --- a/Play The Game.py +++ b/Play The Game.py @@ -1,3 +1,3 @@ -print("Starting Space Invaders...\nLoading Main Window...") +print("Starting Attack on Blocks...\nLoading Main Window...") import GUI GUI.display() diff --git a/README.md b/README.md index d0e0596..0c69432 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Space Invaders # +# Attack on Blocks # This take on space invaders was written for my IT BTEC course, Unit 21 Games Development at college. This version, written in python, includes more advanced features such as resource packs.