add cartridge reader

Signed-off-by: Peter Siegmund <mars3142@noreply.mars3142.dev>
This commit is contained in:
2026-02-12 11:47:02 +01:00
parent eb21513dd5
commit 669a5d8ce6
25 changed files with 984 additions and 73 deletions

14
main/include/ui/cFrame.h Normal file
View File

@@ -0,0 +1,14 @@
#pragma once
#include <wx/wx.h>
class cFrame : public wxMDIParentFrame
{
public:
cFrame();
private:
void OnHello(wxCommandEvent& event);
void OnExit(wxCommandEvent& event);
void OnAbout(wxCommandEvent& event);
};