mirror of
https://github.com/jpd002/Play-.git
synced 2025-05-02 23:47:58 +03:00
22 lines
407 B
C++
22 lines
407 B
C++
![]() |
#include "GsInputStateView.h"
|
||
|
#include "GsStateUtils.h"
|
||
|
|
||
|
CGsInputStateView::CGsInputStateView(HWND parent, const RECT& rect)
|
||
|
: CRegViewPage(parent, rect)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
CGsInputStateView::~CGsInputStateView()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
void CGsInputStateView::UpdateState(CGSHandler* gs)
|
||
|
{
|
||
|
std::string result;
|
||
|
result += CGsStateUtils::GetInputState(gs);
|
||
|
SetDisplayText(result.c_str());
|
||
|
CRegViewPage::Update();
|
||
|
}
|