added textures to options
This commit is contained in:
parent
30d08f0036
commit
ae52af7426
1 changed files with 3 additions and 1 deletions
4
GUI.py
4
GUI.py
|
@ -54,8 +54,10 @@ class Main_Window:
|
||||||
|
|
||||||
class Options_Window:
|
class Options_Window:
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
|
self.textures = Textures()
|
||||||
self.options = {
|
self.options = {
|
||||||
"Difficulty": 120
|
"Difficulty": 120,
|
||||||
|
"Textures": self.textures
|
||||||
}
|
}
|
||||||
|
|
||||||
def display(self, master):
|
def display(self, master):
|
||||||
|
|
Reference in a new issue