Files
inferno/inferno/src/inferno/render/context.h
T

26 lines
278 B
C++

#ifndef CONTEXT_H
#define CONTEXT_H
struct GLFWwindow;
namespace Inferno {
class Context {
public:
Context(GLFWwindow* window);
void initialize();
void destroy();
void render();
void setCurrent();
private:
GLFWwindow* m_window;
};
}
#endif // CONTEXT_H