Files
Aeon/src/frambuffer.hpp

20 lines
181 B
C++

#pragma once
//#include <glad/glad.hpp>
class FrameBuffer
{
public:
FrameBuffer();
// Renders with OpenGL as a texture
void Render();
uint32_t data;
};