1
Fork 0

renamed textures so less likely to use object directly

This commit is contained in:
Jake Howard 2015-05-11 22:09:47 +01:00
parent a780da7dbe
commit 4460a0bb12
1 changed files with 2 additions and 2 deletions

4
GUI.py
View File

@ -54,10 +54,10 @@ class Main_Window:
class Options_Window:
def __init__(self):
self.textures = Textures()
self.textures_object = Textures()
self.options = {
"Difficulty": 120,
"Textures": self.textures
"Textures": self.textures_object
}
def display(self, master):