renamed textures so less likely to use object directly
This commit is contained in:
parent
a780da7dbe
commit
4460a0bb12
1 changed files with 2 additions and 2 deletions
4
GUI.py
4
GUI.py
|
@ -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):
|
||||
|
|
Reference in a new issue