Graphics Animations & Renaming

This commit is contained in:
IlushaShurupov 2023-07-23 22:11:14 +03:00 committed by Ilya Shurupov
parent 1e2ca13a15
commit 41f7d978a9
15 changed files with 718 additions and 318 deletions

View 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;
};
}