mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-13 14:02:15 -07:00
11 lines
262 B
C++
11 lines
262 B
C++
#include "tab_home.h"
|
|
|
|
TabHome::TabHome(TabSupervisor *_tabSupervisor, AbstractClient *_client) : Tab(_tabSupervisor), client(_client)
|
|
{
|
|
homeWidget = new HomeWidget(this, tabSupervisor);
|
|
setCentralWidget(homeWidget);
|
|
}
|
|
|
|
void TabHome::retranslateUi()
|
|
{
|
|
}
|