Graphics Animations & Renaming
This commit is contained in:
parent
3a68e70f03
commit
5f186164a0
15 changed files with 718 additions and 318 deletions
16
Graphics/private/bindings/WindowContext.hpp
Normal file
16
Graphics/private/bindings/WindowContext.hpp
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
#pragma once
|
||||
|
||||
// -------- Window Context -------- //
|
||||
#include <GLFW/glfw3.h>
|
||||
|
||||
namespace tp {
|
||||
class Window;
|
||||
|
||||
class Window::Context {
|
||||
friend Graphics::GL;
|
||||
friend Graphics::GUI;
|
||||
friend Graphics::Canvas;
|
||||
public:
|
||||
GLFWwindow* window;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue