22 lines
268 B
C++
22 lines
268 B
C++
#include "UserInterface.h"
|
|
|
|
UserInterface::UserInterface(const wxString& title) : wxFrame(nullptr, wxID_ANY, title, wxDefaultPosition, wxSize(800, 600))
|
|
{
|
|
|
|
}
|
|
|
|
UserInterface::~UserInterface()
|
|
{
|
|
|
|
}
|
|
|
|
void UserInterface::InitUI()
|
|
{
|
|
|
|
}
|
|
|
|
void UserInterface::InitData()
|
|
{
|
|
|
|
}
|