mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-08-31 17:55:23 +02:00
13 lines
275 B
C++
13 lines
275 B
C++
#pragma once
|
|
|
|
#include "Common/GPU/MiscTypes.h"
|
|
|
|
class GraphicsContext;
|
|
|
|
class Application {
|
|
public:
|
|
virtual ~Application() = default;
|
|
virtual bool InitGraphics(GraphicsContext *graphicsContext) = 0;
|
|
virtual void ShutdownGraphics(GraphicsContext *graphicsContext) = 0;
|
|
};
|