mirror of
https://github.com/izzy2lost/ppsspp.git
synced 2026-03-10 12:43:04 -07:00
10 lines
234 B
C++
10 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;
|
|
};
|