From ae52af742652d5af2553290bb509448ea1ec4bad Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Mon, 11 May 2015 13:01:56 +0100 Subject: [PATCH] added textures to options --- GUI.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/GUI.py b/GUI.py index b3c791b..94d7841 100644 --- a/GUI.py +++ b/GUI.py @@ -54,8 +54,10 @@ class Main_Window: class Options_Window: def __init__(self): + self.textures = Textures() self.options = { - "Difficulty": 120 + "Difficulty": 120, + "Textures": self.textures } def display(self, master):