23 lines
427 B
C++
23 lines
427 B
C++
#include "../../User Interface.h"
|
|
#include "Settings Page.h"
|
|
#include "Settings Page - Game - Status.h"
|
|
|
|
CGameStatusPage::CGameStatusPage (HWND hParent, const RECT & rcDispay )
|
|
{
|
|
Create(hParent);
|
|
if (m_hWnd == NULL)
|
|
{
|
|
return;
|
|
}
|
|
SetWindowPos(HWND_TOP,&rcDispay,SWP_HIDEWINDOW);
|
|
}
|
|
|
|
void CGameStatusPage::ShowPage()
|
|
{
|
|
ShowWindow(SW_SHOW);
|
|
}
|
|
|
|
void CGameStatusPage::HidePage()
|
|
{
|
|
ShowWindow(SW_HIDE);
|
|
} |