mirror of
https://github.com/dortania/OpenCore-Legacy-Patcher.git
synced 2026-04-22 02:50:15 +10:00
14 lines
252 B
Python
14 lines
252 B
Python
# Generates menubar for wxPython to use
|
|
|
|
import wx
|
|
|
|
class GenerateMenubar:
|
|
|
|
def __init__(self) -> None:
|
|
self.menubar: wx.MenuBar = None
|
|
|
|
|
|
def generate(self) -> wx.MenuBar:
|
|
self.menubar = wx.MenuBar()
|
|
|
|
return self.menubar |