13 lines
174 B
C++
13 lines
174 B
C++
#ifndef RENDERTEXTURE_H
|
|
#define RENDERTEXTURE_H
|
|
|
|
#include "rendercontext.h"
|
|
|
|
class RenderTexture
|
|
{
|
|
public:
|
|
RenderTexture(RenderContext* ctx);
|
|
};
|
|
|
|
#endif // RENDERTEXTURE_H
|