mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-07-30 18:49:13 +02:00
12 lines
299 B
C++
12 lines
299 B
C++
#pragma once
|
|
|
|
class GraphicsContext;
|
|
|
|
class Application {
|
|
public:
|
|
virtual ~Application() = default;
|
|
virtual bool InitGraphics(GraphicsContext *graphicsContext) = 0;
|
|
virtual void ShutdownGraphics(GraphicsContext *graphicsContext) = 0;
|
|
virtual void Frame(GraphicsContext *graphicsContext) = 0;
|
|
};
|