mirror of
https://github.com/jpd002/Play-.git
synced 2025-05-02 07:27:59 +03:00
16 lines
294 B
C++
16 lines
294 B
C++
#pragma once
|
|
|
|
#include "../RegViewPage.h"
|
|
#include "../../gs/GSHandler.h"
|
|
|
|
class CGsContextStateView : public CRegViewPage
|
|
{
|
|
public:
|
|
CGsContextStateView(HWND, const RECT&, unsigned int);
|
|
virtual ~CGsContextStateView();
|
|
|
|
void UpdateState(CGSHandler*);
|
|
|
|
private:
|
|
unsigned int m_contextId;
|
|
};
|