mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
10 lines
236 B
Python
10 lines
236 B
Python
from tkinter import *
|
|
from tkinter.ttk import *
|
|
|
|
from ui.window import *
|
|
|
|
|
|
class ConfigurationMenu(Menu):
|
|
def __init__(self, window: Window, parent, game: Game):
|
|
super(ConfigurationMenu, self).__init__(window, parent, game)
|