mirror of
https://github.com/jpd002/Play-.git
synced 2025-05-01 23:17:58 +03:00
14 lines
341 B
C++
14 lines
341 B
C++
#pragma once
|
|
|
|
#include "../RegViewPage.h"
|
|
#include "../../gs/GSHandler.h"
|
|
#include "FrameDebuggerTab.h"
|
|
|
|
class CGsInputStateView : public CRegViewPage, public IFrameDebuggerTab
|
|
{
|
|
public:
|
|
CGsInputStateView(HWND, const RECT&);
|
|
virtual ~CGsInputStateView();
|
|
|
|
void UpdateState(CGSHandler*, CGsPacketMetadata*, DRAWINGKICK_INFO*) override;
|
|
};
|