mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-06-02 11:36:30 +03:00
23 lines
464 B
C++
23 lines
464 B
C++
#ifndef EE_GRAPHICSCFRAMEBUFFERMANAGER_HPP
|
|
#define EE_GRAPHICSCFRAMEBUFFERMANAGER_HPP
|
|
|
|
#include "base.hpp"
|
|
#include "cframebuffer.hpp"
|
|
|
|
namespace EE { namespace Graphics { namespace Private {
|
|
|
|
class EE_API cFrameBufferManager : public tContainer<cFrameBuffer>, public tSingleton<cFrameBufferManager> {
|
|
friend class tSingleton<cFrameBufferManager>;
|
|
public:
|
|
cFrameBufferManager();
|
|
|
|
virtual ~cFrameBufferManager();
|
|
|
|
void Reload();
|
|
protected:
|
|
};
|
|
|
|
}}}
|
|
|
|
#endif
|