mirror of
https://github.com/rwengine/openrw.git
synced 2024-11-08 03:42:35 +01:00
21 lines
308 B
C++
21 lines
308 B
C++
#ifndef _GTARENDERER_HPP_
|
|
#define _GTARENDERER_HPP_
|
|
#include "ViewCamera.hpp"
|
|
|
|
class GTAEngine;
|
|
class GTARenderer
|
|
{
|
|
public:
|
|
|
|
GTARenderer();
|
|
|
|
ViewCamera camera;
|
|
|
|
/// The numer of things rendered by the last renderWorld
|
|
size_t rendered;
|
|
size_t culled;
|
|
|
|
void renderWorld(GTAEngine* engine);
|
|
};
|
|
|
|
#endif |