mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
9 lines
234 B
C++
9 lines
234 B
C++
#pragma once
|
|
|
|
#include "Common/GraphicsContext.h"
|
|
#include "Common/CommonWindows.h"
|
|
|
|
class WindowsGraphicsContext : public GraphicsContext {
|
|
public:
|
|
virtual bool Init(HINSTANCE hInst, HWND window, std::string *error_message) = 0;
|
|
};
|