18 lines
131 B
C++
18 lines
131 B
C++
#pragma once
|
|
|
|
|
|
class FrameBuffer
|
|
{
|
|
public:
|
|
|
|
FrameBuffer();
|
|
|
|
// Renders with OpenGL as a texture
|
|
void Render();
|
|
|
|
|
|
|
|
|
|
};
|
|
|