mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-08-18 06:55:48 +03:00
22 lines
492 B
C++
Executable File
22 lines
492 B
C++
Executable File
#ifndef EE_MAPS_CGLOBALBATCHRENDERER_H
|
|
#define EE_MAPS_CGLOBALBATCHRENDERER_H
|
|
|
|
#include <eepp/graphics/base.hpp>
|
|
#include <eepp/graphics/batchrenderer.hpp>
|
|
|
|
namespace EE { namespace Graphics {
|
|
|
|
/** @brief The global Batch Renderer class. This class will be used by the engine for the rendering. */
|
|
class EE_API GlobalBatchRenderer : public BatchRenderer {
|
|
SINGLETON_DECLARE_HEADERS(GlobalBatchRenderer)
|
|
|
|
public:
|
|
~GlobalBatchRenderer();
|
|
protected:
|
|
GlobalBatchRenderer();
|
|
};
|
|
|
|
}}
|
|
|
|
#endif
|