18 lines
317 B
C++
18 lines
317 B
C++
#ifndef SPARROWRENDERER_H
|
|
#define SPARROWRENDERER_H
|
|
|
|
#include "scene.h"
|
|
|
|
class SparrowRenderer
|
|
{
|
|
Scene* scene;
|
|
// TODO : data bank
|
|
public:
|
|
SparrowRenderer(int width, int height);
|
|
void setScene(Scene* myScene);
|
|
void resize(int width, int height);
|
|
void render();
|
|
};
|
|
|
|
#endif // SPARROWRENDERER_H
|