Push experimental build

This commit is contained in:
Mykola Grymalyuk
2023-05-06 19:49:29 -06:00
parent a6e0c142ca
commit f3e2dfc4de
9 changed files with 917 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
# 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