30 lines
274 B
C++
30 lines
274 B
C++
#ifndef LIME_APP_RENDERER_H
|
|
#define LIME_APP_RENDERER_H
|
|
|
|
|
|
#include <app/Window.h>
|
|
|
|
|
|
namespace lime {
|
|
|
|
|
|
class Renderer {
|
|
|
|
|
|
public:
|
|
|
|
virtual void Flip () = 0;
|
|
|
|
Window* currentWindow;
|
|
|
|
|
|
};
|
|
|
|
|
|
Renderer* CreateRenderer (Window* window);
|
|
|
|
|
|
}
|
|
|
|
|
|
#endif |